Advertisement
vovanhik_24

#6

Aug 18th, 2023 (edited)
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.75 KB | None | 0 0
  1.        static void Main(string[] args)
  2.         {
  3.             int cristalUnitPrice = 15;
  4.             Console.WriteLine($"Добро пожаловать в мою лавку! Сегодня кристалы продаються по {cristalUnitPrice}, золота");
  5.  
  6.             Console.Write("сколько у вас золота? ");
  7.             int gold = Convert.ToInt32(Console.ReadLine());
  8.             Console.Write("сколько кристалов вы хотите купить? ");
  9.             int cristals = Convert.ToInt32(Console.ReadLine());
  10.  
  11.             gold -= cristals * cristalUnitPrice;
  12.             Console.WriteLine($"Вы купили: {cristals} кристалов. У вас осталось: {gold} золота");
  13.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement