Advertisement
Spocoman

10. Poke Mon

Jan 18th, 2022
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.64 KB | None | 0 0
  1. using System;
  2.  
  3. namespace PokeMon
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n = int.Parse(Console.ReadLine());
  10.             int m = int.Parse(Console.ReadLine());
  11.             int y = int.Parse(Console.ReadLine());
  12.             double x = n / 2;
  13.             int counter = 0;
  14.  
  15.             while (n >= m)
  16.             {
  17.                 n -= m;
  18.                 counter++;
  19.  
  20.                 if (n == x && y != 0)
  21.                 {
  22.                     n /= y;
  23.                 }
  24.             }
  25.             Console.WriteLine(n);
  26.             Console.WriteLine(counter);
  27.         }
  28.     }
  29. }
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement