kwest87

Untitled

Mar 18th, 2022
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.88 KB | None | 0 0
  1. [StartCode]
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace ConsoleApp2
  9. {
  10.     internal class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             int gold;
  15.             int crystal;
  16.             int crystalCost = 5;
  17.  
  18.             Console.Write("Сколько у вас золота : ");
  19.             gold = Convert.ToInt32(Console.ReadLine());
  20.             Console.Write("Добро пожаловать в магазин , сколько кристалов вы хотите купить : ");
  21.             crystal = Convert.ToInt32(Console.ReadLine());
  22.  
  23.             gold -= crystal * crystalCost;
  24.  
  25.             Console.WriteLine("После покупки " + crystal + " кристалов у вас осталось " + gold + " монет.");
  26.         }
  27.     }
  28. }
  29. [EndCode]
Advertisement
Add Comment
Please, Sign In to add comment