Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Program
- {
- static void Main(string[] args)
- {
- int coints;
- int cristals;
- int cristalPrice = 10;
- Console.WriteLine("Введите кол-во золотых монет:");
- coints = Convert.ToInt32(Console.ReadLine());
- Console.WriteLine($"Вы можете купить {coints/cristalPrice} кристалов." +
- $"\nСколько кристалов вы будете покупать?");
- cristals = Convert.ToInt32(Console.ReadLine());
- coints -= cristals * cristalPrice;
- Console.WriteLine($"У вас есть:" +
- $"\nМонет - {coints}" +
- $"\nКристалов - {cristals}");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment