C# - Arrays

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 พ.ย. 2024

ความคิดเห็น • 25

  • @TutorialsPoint_
    @TutorialsPoint_  ปีที่แล้ว +1

    To Get Certification, Click Here: bitly.ws/P9Up
    Use coupon "TH-cam12" to get ‘’FLAT 12%’’ OFF at Checkout.

    • @BroCodeFan
      @BroCodeFan 5 หลายเดือนก่อน

      // Thema's en teams
      string[] themaRondes = { "Sport", "Cultuur", "Politiek" };
      int aantalTeams = 4;
      string[] teamNamen = new string[aantalTeams];
      int[,] scores = new int[aantalTeams, themaRondes.Length];
      // Namen en scores invoeren
      for (int i = 0; i < aantalTeams; i++)
      {
      Console.Write($"Voer de naam in van team {i + 1}: ");
      teamNamen[i] = Console.ReadLine();
      for (int j = 0; j < themaRondes.Length; j++)
      {
      Console.Write($"{teamNamen[i]}, {themaRondes[j]} score: ");
      scores[i, j] = int.Parse(Console.ReadLine());
      }
      }
      // Winnaars per ronde bepalen
      for (int j = 0; j < themaRondes.Length; j++)
      {
      int hoogsteScore = -1;
      string winnaar = "";
      for (int i = 0; i < aantalTeams; i++)
      {
      if (scores[i, j] > hoogsteScore)
      {
      hoogsteScore = scores[i, j];
      winnaar = teamNamen[i];
      }
      }
      Console.WriteLine($"
      Winnaar van de {themaRondes[j]} ronde is: {winnaar} met {hoogsteScore} punten.");
      }

  • @FeeDeeX46
    @FeeDeeX46 5 ปีที่แล้ว +8

    Thank you, you're amazing explaining, greetings from Argentina

  • @sajidmushfikrahman4085
    @sajidmushfikrahman4085 5 ปีที่แล้ว +6

    Array are part of "Reference Type". Which store the reference on----stack
    values in ---heaps
    **Array has size which is static.

  • @Squidley32
    @Squidley32 6 ปีที่แล้ว +5

    Thanks so much for this video, very clear and helpful, this saved my homework assignment

  • @trueindian2108
    @trueindian2108 2 ปีที่แล้ว

    Really nice and informative video.

  • @samparab77
    @samparab77 5 ปีที่แล้ว +1

    Thank you so much to clear the Concept of array with examples

    • @BroCodeFan
      @BroCodeFan 5 หลายเดือนก่อน

      // Thema's en teams
      string[] themaRondes = { "Sport", "Cultuur", "Politiek" };
      int aantalTeams = 4;
      string[] teamNamen = new string[aantalTeams];
      int[,] scores = new int[aantalTeams, themaRondes.Length];
      // Namen en scores invoeren
      for (int i = 0; i < aantalTeams; i++)
      {
      Console.Write($"Voer de naam in van team {i + 1}: ");
      teamNamen[i] = Console.ReadLine();
      for (int j = 0; j < themaRondes.Length; j++)
      {
      Console.Write($"{teamNamen[i]}, {themaRondes[j]} score: ");
      scores[i, j] = int.Parse(Console.ReadLine());
      }
      }
      // Winnaars per ronde bepalen
      for (int j = 0; j < themaRondes.Length; j++)
      {
      int hoogsteScore = -1;
      string winnaar = "";
      for (int i = 0; i < aantalTeams; i++)
      {
      if (scores[i, j] > hoogsteScore)
      {
      hoogsteScore = scores[i, j];
      winnaar = teamNamen[i];
      }
      }
      Console.WriteLine($"
      Winnaar van de {themaRondes[j]} ronde is: {winnaar} met {hoogsteScore} punten.");
      }

  • @IndritVaka
    @IndritVaka 3 ปีที่แล้ว

    Thanks, man, it's very helpful

  • @KarthikMumadi
    @KarthikMumadi 3 ปีที่แล้ว

    please give runtime examples as well

  • @MiaTheDreamer
    @MiaTheDreamer 3 ปีที่แล้ว

    Thank you 😊

  • @abdulraufkhan5858
    @abdulraufkhan5858 6 ปีที่แล้ว +2

    sir why are we using .length when we store the value from user

    • @deanpotter6654
      @deanpotter6654 6 ปีที่แล้ว +1

      That's not what happened. The .Length property was used to establish how many times the for loop needed to run, based on the length of the array that he defined. Whatever number the user input had to be checked whether it occurred in his predefined array. If it matched one of the elements, then the bool is set to true and finally an if statement printed the appropriate message based on the state of the bool.

  • @MxolisiHuey
    @MxolisiHuey 2 ปีที่แล้ว

    I love this

  • @eitan3215
    @eitan3215 4 ปีที่แล้ว

    Thanks a lot

  • @FahimAhmed-iq7do
    @FahimAhmed-iq7do 5 ปีที่แล้ว +2

    jagged Array is xossssssssssssssss

  • @selvapriya4115
    @selvapriya4115 4 ปีที่แล้ว

    how we use INPTR in cPP ???

  • @WaqasAhmed-om8ph
    @WaqasAhmed-om8ph 6 ปีที่แล้ว +1

    i want to store array value from user , how can i store?

    • @veerbahadur5423
      @veerbahadur5423 6 ปีที่แล้ว

      th-cam.com/play/PLdOT12odxrUoNQeRyIZtV9gEaKmK2YRD4.html

    • @sohaibisrar8463
      @sohaibisrar8463 6 ปีที่แล้ว

      I know about it

  • @manjeetnandal1
    @manjeetnandal1 4 ปีที่แล้ว

    Good video.
    But not perfectly explaining!

  • @PixelFlicksMovieMagicGaming
    @PixelFlicksMovieMagicGaming 2 ปีที่แล้ว +1

    He didn't know how to explain it properly

    • @jamesroot9777
      @jamesroot9777 ปีที่แล้ว

      Did you see the pictorial representation of the array?