Skip to content

Instantly share code, notes, and snippets.

@Attosius
Created August 25, 2025 18:42
Show Gist options
  • Save Attosius/352291db787bcefa1046c2140bcbedbe to your computer and use it in GitHub Desktop.
Save Attosius/352291db787bcefa1046c2140bcbedbe to your computer and use it in GitHub Desktop.
ДЗ: Магазин кристаллов
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