Last active
February 7, 2025 06:36
-
-
Save Moonlol13/deb345b5dc6f35f5626d29b4f0d7f0f2 to your computer and use it in GitHub Desktop.
0.1
This file contains 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
namespace ConsoleApp6 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string name = "Ilnur"; | |
int age = 18; | |
int count = 4; | |
char firstLetter = 'a'; | |
char secondLetter = 'b'; | |
bool isOpen = true; | |
short numbersOfPeople = 3; | |
double pi = 3.14; | |
double percent = 14.15; | |
long sum = 43; | |
bool isAlive = false; | |
int rubles = 19; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment