Advertisement
IGRODELOFF

HW: ShopCristal

Oct 28th, 2024
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.09 KB | Gaming | 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 homeWorkShopCristal
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int countMoney;
  14.             int priceCristal = 10;
  15.             int countCristal;
  16.  
  17.             Console.Write("Введите количество своих денег: ");
  18.             countMoney = Convert.ToInt32(Console.ReadLine());
  19.  
  20.             Console.Write("Введите количество кристалов, которое хотите получить: ");
  21.             countCristal = Convert.ToInt32(Console.ReadLine());
  22.  
  23.             if ((countCristal*priceCristal) > countMoney)
  24.             {
  25.                 Console.WriteLine("У вас недостаточно денег.");
  26.             }
  27.             else
  28.             {
  29.                 Console.WriteLine($"Отлично вы купили {countCristal} кристалов и у вас осталось {(countMoney-countCristal*priceCristal)}");
  30.             }
  31.         }
  32.     }
  33. }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement