Advertisement
stupid_pro

Untitled

Nov 11th, 2021
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.58 KB | None | 0 0
  1. using System;
  2. class HelloWorld {
  3.   public static void Main(string[] args) {
  4.     //<тип данных> имя переменной = её значение
  5.     string str = "Hello world";
  6.     int value = 10;
  7.     int x = 15;
  8.    
  9.     //Вещественные числа
  10.     Console.WriteLine("Hello World"); //примитивный тип данных
  11.     Console.WriteLine(20);
  12.     Console.WriteLine(20 * 2);
  13.     Console.WriteLine(20 + 20);
  14.     Console.WriteLine(20 - 150);
  15.     Console.WriteLine('a');
  16.     Console.WriteLine(true);
  17.     Console.WriteLine(false);
  18.  
  19.   }
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement