SORU - 14 / 15

  • S

    Aşağıdaki kod parçasında boşluklara sırasıyla neler gelir.

    class Program
    {
      static void Main(string[] args){
      int num;
      ____ a = 10, b = 20, c = 30; 
      num = a * b * c;
      ____ string sonuc = "Sonuç ";
    
      Console.WriteLine( sonuc + num );
      Console.ReadLine();
      }
    }
    
    
  • A

    int / const

  • B

    const / int

  • C

    bool / const

  • D

    int / constant