Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp2
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int money;
  10. int crystalPrice = 10;
  11. int crystalCount;
  12. bool enoughMoney;
  13.  
  14. Console.WriteLine("Добрый день! Сколько у вас денег? ");
  15. money = Convert.ToInt32(Console.ReadLine());
  16. Console.WriteLine("Отлично! Сколько кристаллов Вы хотите приобрести?");
  17. crystalCount = Convert.ToInt32(Console.ReadLine());
  18.  
  19. enoughMoney = money >= crystalCount * crystalPrice;
  20. crystalCount = Convert.ToInt32(enoughMoney);
  21.  
  22. money -= crystalPrice * crystalCount;
  23.  
  24. Console.WriteLine("Спасибо за покупку! Сейчас у Вас " + crystalCount + " кристаллов и " + money + " золота.");
  25.  
  26.  
  27.  
  28.  
  29. }
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement