Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Task4
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int moneyCount;
- int crystalCount;
- int crystalCost = 5;
- int totalCost;
- Console.Write("Сколько золота ты вынес из подземелья?: ");
- moneyCount = Convert.ToInt32(Console.ReadLine());
- Console.Write("Купец: Приветствую путник в нашей кристальной лавке. Сколько кристаллов ты хочешь купить?: ");
- crystalCount = Convert.ToInt32(Console.ReadLine());
- totalCost = crystalCount * crystalCost;
- crystalCount *= crystalCost;
- moneyCount -= totalCost;
- Console.WriteLine("Купец: Вы смогли купить " + crystalCount + " кристаллов они стоили вам " + totalCost + " у вас осталось " + moneyCount + " золота. Приходите ещё, доброго пути!");
- }
- }
- }
Add Comment
Please, Sign In to add comment