alexey3017

1.1 - Переменные

Mar 19th, 2020
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Learn1
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             int money = 10;
  13.             string productName = "Мышка";
  14.             float temperature = 36.6f;
  15.             char equality = '=';
  16.             bool comparison = false;
  17.             var zero = '0';
  18.             byte quantity = 15;
  19.             double price = 3.55;
  20.             ulong totalPrice = 900;
  21.             sbyte stepsInSecond = 5;
  22.         }
  23.     }
  24. }
Add Comment
Please, Sign In to add comment