Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Hw5
- {
- class Program
- {
- static void Main()
- {
- int goldInWallet;
- int crystals;
- int crystalUnitPrice = 50;
- Console.WriteLine($"Добро пожаловать в мою скромную лавку, путник! Цена за один кристалл составляет {crystalUnitPrice} золота.");
- Console.WriteLine();
- Console.Write("Сколько у Вас золота?: ");
- goldInWallet = Convert.ToInt32(Console.ReadLine());
- Console.Write("Сколько кристаллов желаете купить?: ");
- crystals = Convert.ToInt32(Console.ReadLine());
- goldInWallet -= crystals * crystalUnitPrice;
- Console.WriteLine("Благодарю за покупку!");
- Console.WriteLine();
- Console.WriteLine($"В Вашем кошельке {goldInWallet} золота и {crystals} кристалла(ов).");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement