Created
August 24, 2025 18:18
-
-
Save Attosius/90ea47f5f021835ee71f658b4ed7f550 to your computer and use it in GitHub Desktop.
ДЗ: Переменные
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string name = "Andrey"; | |
char symbol = 'a'; | |
bool canPay = true; | |
byte alpha = 255; | |
short typeOfCode = 1000; | |
int money = 0; | |
uint unusedType = 4_000_000_000; | |
long bigNumber = 5_000_000_000; | |
decimal muchMoney = 10_000_000_000; | |
float speed = 17.7f; | |
double elapsed = 22.2; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment