Advertisement
Guest User

1.6

a guest
Aug 26th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.69 KB | None | 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 CSlight1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.Write("Сколько у вас золота?");
  14.             int gold = Convert.ToInt32(Console.ReadLine());
  15.             int priceCrystal = 3;
  16.             int convertG_C = gold / priceCrystal;
  17.             int overG = gold % priceCrystal;
  18.             Console.WriteLine("Вы можете купить: " + convertG_C + " Кристаллов");
  19.             Console.WriteLine("У вас останется: " + overG + " золота");
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement