Created
April 1, 2025 11:27
-
-
Save Strelok78/f34a20a769c2025603c4cb46e37e15a0 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
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