Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp8
- {
- class Program
- {
- static void Main(string[] args)
- {
- int gold;
- int crystals;
- int exchangeRates = 30;
- Console.WriteLine("Добрый день!Здесь вы можете купить кристаллы\nСтоимость 1 кристалла 30 золота");
- Console.Write("Сколько у вас золота:");
- gold = Convert.ToInt32(Console.ReadLine());
- Console.Write("Сколько кристаллов вы желаете купить:");
- crystals = Convert.ToInt32(Console.ReadLine());
- gold = gold - crystals * exchangeRates;
- Console.WriteLine("У вас осталось:" + gold + " золота и " + crystals + " кристалла(ов)");
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment