Advertisement
Montagne94

6. Магазин кристаллов

Jan 7th, 2025
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.82 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace HomeWork
  4. {
  5.     internal class Program
  6.     {
  7.         public static void Main(string[] args)
  8.         {
  9.             int gold;
  10.             int crystal;
  11.             int crystalPrice = 5;
  12.  
  13.             Console.WriteLine("Введите начальное кол-во голды:");
  14.             gold = int.Parse(Console.ReadLine());
  15.             Console.Clear();
  16.  
  17.             Console.WriteLine("Введите количество кристалов которое хотели бы купить:");
  18.             crystal = int.Parse(Console.ReadLine());
  19.             Console.Clear();
  20.  
  21.             int purchasePrice = crystal * crystalPrice;
  22.  
  23.             gold -= purchasePrice;
  24.             Console.WriteLine($"Теперь у вас {gold} золота и {crystal} кристалов");
  25.         }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement