Делить на ноль нельзя.
При делении целых чисел возможен дробный результат, дробная часть усекается.
При делении целых чисел возможен дробный результат, дробная часть усекается.
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;
-
}
}
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
2
2