Advertisement
Spocoman

Walking

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