Advertisement
DrDemonik

Untitled

Mar 5th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. Console.WriteLine("Введите стартовое золото:");
  2. int countGold = Convert.ToInt32( Console.ReadLine());
  3. Console.WriteLine("Введите цену кристала:");
  4. int priceKristal = Convert.ToInt32(Console.ReadLine());
  5. Console.WriteLine("Вы можете купить "+ (countGold / priceKristal) + " кристала. Введите требуемое кол-во кристалов:");
  6. int needKristal = Convert.ToInt32(Console.ReadLine());
  7. countGold = countGold -(needKristal * priceKristal);
  8. Console.WriteLine("У Вас "+countGold+" золота и "+needKristal+" кристалов");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement