اجرا
1264 x 150
x
1
using System;
2
3
namespace MyApplication{
4
class Program{
5
static void Main(string[] args){
6
double x = 6;
7
x /= 2;
8
Console.WriteLine(x);
9
}
10
}
11
}