Skip to content

Instantly share code, notes, and snippets.

@EntaltsevSN
Created September 18, 2023 14:29
Show Gist options
  • Save EntaltsevSN/4a2396103a4a28e047e54c6acc8a8328 to your computer and use it in GitHub Desktop.
Save EntaltsevSN/4a2396103a4a28e047e54c6acc8a8328 to your computer and use it in GitHub Desktop.
Homework #2
string name;
int age;
int programCount;
int money;
int time;
bool truth;
name = "Станислав";
age = 33;
programCount = 2;
money = 200000;
time = 50000;
truth = true;
Console.WriteLine("Здравствуйте, меня зовут " + name + ".");
Console.WriteLine("Мне " + age + " лет.");
Console.WriteLine("Я хочу научиться делать игры, это моя " + programCount + " программа на языке C#.");
Console.WriteLine("Когда я закончу обучение я хочу зарабатывать " + money + " денег в " + time + " наносекунд.");
Console.WriteLine("Достигну ли я желаемого? " + truth + "!");
Console.ReadKey();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment