Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class HelloWorld {
- public static void Main(string[] args) {
- //<тип данных> имя переменной = её значение
- string str = "Hello world";
- int value = 10;
- int x = 15;
- //Вещественные числа
- Console.WriteLine("Hello World"); //примитивный тип данных
- Console.WriteLine(20);
- Console.WriteLine(20 * 2);
- Console.WriteLine(20 + 20);
- Console.WriteLine(20 - 150);
- Console.WriteLine('a');
- Console.WriteLine(true);
- Console.WriteLine(false);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement