Spocoman

04. Walking

Nov 21st, 2021 (edited)
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.86 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Walking
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.            
  10.             int total = 0;
  11.             while (total < 10000)
  12.             {
  13.                 string steps = Console.ReadLine();
  14.                 if (steps == "Going home")
  15.                 {
  16.                     total += int.Parse(Console.ReadLine());
  17.                     break;
  18.                 }
  19.                 int step = int.Parse(steps);
  20.                 total += step;
  21.             }
  22.             if (total < 10000)
  23.             {
  24.                 Console.WriteLine($"{10000 - total} more steps to reach goal.");
  25.             }
  26.             else
  27.             {
  28.                 Console.WriteLine("Goal reached! Good job!");
  29.                 Console.WriteLine($"{total - 10000} steps over the goal!");
  30.             }
  31.         }
  32.     }
  33. }
  34.  
Add Comment
Please, Sign In to add comment