Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace HomeWork
- {
- internal class Program
- {
- public static void Main(string[] args)
- {
- int gold;
- int crystal;
- int crystalPrice = 5;
- Console.WriteLine("Введите начальное кол-во голды:");
- gold = int.Parse(Console.ReadLine());
- Console.Clear();
- Console.WriteLine("Введите количество кристалов которое хотели бы купить:");
- crystal = int.Parse(Console.ReadLine());
- Console.Clear();
- int purchasePrice = crystal * crystalPrice;
- gold -= purchasePrice;
- Console.WriteLine($"Теперь у вас {gold} золота и {crystal} кристалов");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement