Skip to content

Instantly share code, notes, and snippets.

@Strelok78
Created April 1, 2025 11:27
Show Gist options
  • Save Strelok78/f34a20a769c2025603c4cb46e37e15a0 to your computer and use it in GitHub Desktop.
Save Strelok78/f34a20a769c2025603c4cb46e37e15a0 to your computer and use it in GitHub Desktop.
Магазин кристаллов (без проверки достаточности средств)
namespace iJuniorPractice;
class Program
{
static void Main(string[] args)
{
int price = 10;
int wallet;
int buyingCount;
Console.WriteLine("Система: Сколько у вас золота?");
wallet = int.Parse(Console.ReadLine());
Console.WriteLine($"Здравстуй, Путник, сколько кристаллов хочешь купить? 1 шт. стоит {price} Золота");
buyingCount = int.Parse(Console.ReadLine());
wallet -= buyingCount * price;
Console.WriteLine($"Система: У вас {buyingCount} кристаллов, {wallet} золота");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment