Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- internal class Program
- {
- static void Main(string[] args)
- {
- int gold;
- int crystals;
- int priceOfCrystal = 16;
- Console.Write("Введите количество золота, которое у вас есть: ");
- gold = Convert.ToInt32(Console.ReadLine());
- Console.Write("Сколько кристалов вы хотите купить? ");
- crystals = Convert.ToInt32(Console.ReadLine());
- gold -= crystals * priceOfCrystal;
- Console.WriteLine($"У вас осталось {gold} золота и {crystals} кристалов.");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment