Advertisement
Montagne94

6. Магазин кристалов

Mar 14th, 2023 (edited)
495
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.69 KB | None | 0 0
  1. public class Program
  2. {
  3.     private static void Main(string[] args)
  4.     {
  5.         int crystalPrice = 3, goldenCoins, crystals;
  6.  
  7.         Console.WriteLine("Введите кол-во золота что бы добавить... .");
  8.         goldenCoins = Convert.ToInt32(Console.ReadLine());
  9.         Console.Clear();
  10.  
  11.         Console.WriteLine($"Сколько кристаллов вы хотите купить по цене {crystalPrice}");
  12.         crystals = int.Parse(Console.ReadLine());
  13.  
  14.         goldenCoins -= crystals * crystalPrice;
  15.  
  16.         Console.WriteLine($"В вашем кошельке осталось {goldenCoins} золота и {crystals} кристаллов");
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement