Advertisement
Gudini

Homework1_6

Sep 24th, 2023
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.86 KB | Source Code | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Homework1_6
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int gold;
  14.             int crystal;
  15.             int crystalUnitPrice = 10;
  16.  
  17.             Console.Write("Введите сколько у вас золота: ");
  18.             gold = Convert.ToInt32(Console.ReadLine());
  19.  
  20.             Console.Write($"Сколько кристаллов вы хотите купить по цене {crystalUnitPrice} золота: ");
  21.             crystal = Convert.ToInt32(Console.ReadLine());
  22.  
  23.             gold -= crystal * crystalUnitPrice;
  24.  
  25.             Console.WriteLine($"Вы купили {crystal} кристаллов и у вас осталось {gold} золота.");
  26.         }
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement