Spocoman

High Jump

Nov 25th, 2021 (edited)
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.02 KB | None | 0 0
  1. using System;
  2.  
  3. namespace HighJump
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int jumpTarget = int.Parse(Console.ReadLine());
  10.             int startJump = jumpTarget - 30;
  11.             int counter = 0;
  12.             int fall = 0;
  13.  
  14.             while (fall != 3 && startJump <= jumpTarget)
  15.             {
  16.                 int jump = int.Parse(Console.ReadLine());
  17.  
  18.                 if (jump > startJump)
  19.                 {
  20.                     startJump += 5;
  21.                     fall = 0;
  22.                 }
  23.                 else
  24.                 {
  25.                     fall++;
  26.                 }
  27.                 counter++;
  28.             }
  29.  
  30.             if (startJump <= jumpTarget)
  31.             {
  32.                 Console.WriteLine($"Tihomir failed at {startJump}cm after {counter} jumps.");
  33.             }
  34.             else
  35.             {
  36.                 Console.WriteLine($"Tihomir succeeded, he jumped over {jumpTarget}cm after {counter} jumps.");
  37.             }
  38.         }
  39.     }
  40. }
Add Comment
Please, Sign In to add comment