Advertisement
IvanOseledko

Homework5

Aug 29th, 2023
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.04 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Hw5
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             int goldInWallet;
  10.             int crystals;
  11.             int crystalUnitPrice = 50;
  12.  
  13.             Console.WriteLine($"Добро пожаловать в мою скромную лавку, путник! Цена за один кристалл составляет {crystalUnitPrice} золота.");
  14.             Console.WriteLine();
  15.             Console.Write("Сколько у Вас золота?: ");
  16.             goldInWallet = Convert.ToInt32(Console.ReadLine());
  17.             Console.Write("Сколько кристаллов желаете купить?: ");
  18.             crystals = Convert.ToInt32(Console.ReadLine());
  19.  
  20.             goldInWallet -= crystals * crystalUnitPrice;
  21.             Console.WriteLine("Благодарю за покупку!");
  22.  
  23.             Console.WriteLine();
  24.             Console.WriteLine($"В Вашем кошельке {goldInWallet} золота и {crystals} кристалла(ов).");
  25.         }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement