Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Курсы
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.WriteLine("Продавец: Добро пожаловать в магазин кристалов! Один стоит 15 монет.");
  14. int crystalPrice = 15;
  15. Console.WriteLine("Введите колличество ваших денег:");
  16. int money = Convert.ToInt32(Console.ReadLine());
  17. int maxCrystalBye = money / crystalPrice;
  18. int remainingMoney = money % 15;
  19. Console.WriteLine($"Герой:Я хочу купить столько, сколько смогу, то есть {maxCrystalBye} кристала," +
  20. $" а на оставшиеся {remainingMoney } монет я куплю пивка!!!") ;
  21.  
  22.  
  23.  
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement