деление

Делить на ноль нельзя.
При делении целых чисел возможен дробный результат, дробная часть усекается.
Скрыть

Показать

Копировать
  Main.cs  
  • using System;
  •  
  • class Program {
  •  public static int Main() {
  •   int res = 0, a = 10, b = 5;
  •   res = a / b;
  •   Console.WriteLine(res);
  •   Console.WriteLine(a / b);
  •   Console.WriteLine("{0}", (a / b));
  •   Console.ReadKey();
  •   return 0;
  •  }
  • }
2
2
2