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 homeWorkShopCristal
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int countMoney;
- int priceCristal = 10;
- int countCristal;
- Console.Write("Введите количество своих денег: ");
- countMoney = Convert.ToInt32(Console.ReadLine());
- Console.Write("Введите количество кристалов, которое хотите получить: ");
- countCristal = Convert.ToInt32(Console.ReadLine());
- if ((countCristal*priceCristal) > countMoney)
- {
- Console.WriteLine("У вас недостаточно денег.");
- }
- else
- {
- Console.WriteLine($"Отлично вы купили {countCristal} кристалов и у вас осталось {(countMoney-countCristal*priceCristal)}");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement