Created
August 25, 2025 18:42
-
-
Save Attosius/352291db787bcefa1046c2140bcbedbe to your computer and use it in GitHub Desktop.
ДЗ: Магазин кристаллов
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace IJuniorTasks | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.Write($"Введите изначальное количество золота: "); | |
var goldAmount = Convert.ToInt32(Console.ReadLine()); | |
var crystalCost = 5; | |
Console.Write($"Стоимость одного кристала {crystalCost} золота. Сколько желаете приобрести? "); | |
var crystalsToBuy = Convert.ToInt32(Console.ReadLine()); | |
var goldForCrystalsToBuy = crystalCost * crystalsToBuy; | |
goldAmount -= goldForCrystalsToBuy; | |
Console.Write($"Количество оставшегося золота: {goldAmount}, количество купленных кристаллов: {crystalsToBuy}"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment