SORU - 11 / 15

  • S

    Aşağıdaki kodun çıktısı ne olur?

    using System;
    namespace Test
    {
       class Program
       {
          static void Main(string[] args)
         {
             int x = 10; int y = 200;
             if(x==10){ int y = 300; }
             Console.WriteLine(y);
             Console.ReadLine();
    }}}
    
    
  • A

    0

  • B

    100

  • C

    200

  • D

    Hata verir