Advertisement
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 Homework1_6
- {
- class Program
- {
- static void Main(string[] args)
- {
- int gold;
- int crystal;
- int crystalUnitPrice = 10;
- Console.Write("Введите сколько у вас золота: ");
- gold = Convert.ToInt32(Console.ReadLine());
- Console.Write($"Сколько кристаллов вы хотите купить по цене {crystalUnitPrice} золота: ");
- crystal = Convert.ToInt32(Console.ReadLine());
- gold -= crystal * crystalUnitPrice;
- Console.WriteLine($"Вы купили {crystal} кристаллов и у вас осталось {gold} золота.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement