SaNik74

Cristal Shop

Jan 19th, 2024
1,335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.72 KB | None | 0 0
  1. class Program
  2. {
  3.     static void Main(string[] args)
  4.     {
  5.         int coints;
  6.         int cristals;
  7.         int cristalPrice = 10;
  8.  
  9.         Console.WriteLine("Введите кол-во золотых монет:");
  10.         coints = Convert.ToInt32(Console.ReadLine());
  11.  
  12.         Console.WriteLine($"Вы можете купить {coints/cristalPrice} кристалов." +
  13.             $"\nСколько кристалов вы будете покупать?");
  14.         cristals = Convert.ToInt32(Console.ReadLine());
  15.  
  16.         coints -= cristals * cristalPrice;
  17.  
  18.         Console.WriteLine($"У вас есть:" +
  19.             $"\nМонет - {coints}" +
  20.             $"\nКристалов - {cristals}");
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment