Last active
February 7, 2025 07:46
-
-
Save MissEve1/acd12da069b7c11ecf3abd9d9964c309 to your computer and use it in GitHub Desktop.
This file contains 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 ConsoleApp1 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("Сколько у вас золота?"); | |
int money = Convert.ToInt32(Console.ReadLine()); | |
int cost = 4; | |
Console.WriteLine($"У вас есть {money} золота."); | |
int quantity = money / cost; | |
Console.WriteLine($"Продавец в лавке предлагает кристалы за {cost} золота. Вы можете преобрести до {quantity} штук. Сколько вы хотите преобрести?"); | |
int shopping = Convert.ToInt32(Console.ReadLine()); | |
int purchase = money - shopping * cost; | |
Console.WriteLine($"Вы приобрели {shopping} кристалов за {cost} монеты за штуку. У вас осталось {purchase} золота."); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment