Advertisement
Montagne94

1. Переменные

Jan 6th, 2025 (edited)
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.54 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace HomeWork
  4. {
  5.     public class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int numberOfUsers = 10;
  10.             double waterTemperature = 36.6;
  11.             string userName = "Alexey";
  12.             bool isUserOnline = true;
  13.             char initialLetter = 'A';
  14.             string password = "1234567";
  15.             int numberOfCoins = 100;
  16.             decimal accountBalance = 1500.75m;
  17.             bool isJump = false;
  18.             float speedOfMovement = 10.5f;
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement