C-Sharp
Версия от 10:58, 23 ноября 2020; Безуглов Сергей (обсуждение | вклад)
Hello World
Объявление переменных
1 int a = 5;
2 double b = a / 2;
3 bool test = true;
4 char firstLetter = 'C';
5 string name = "Hi, there!";
6 int[] age = new int[5] ();
7 int[] age2 = {3, 7, 15, 21, 7};