Advertisement
dragonbs

Walking

Oct 23rd, 2022
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.04 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _04.Walking
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int steps = 0;
  10.  
  11.             while (steps < 10000)
  12.             {
  13.                 string input = Console.ReadLine();
  14.  
  15.                 if (input == "Going home")
  16.                 {
  17.                     int stepsToHome = int.Parse(Console.ReadLine());
  18.  
  19.                     steps += stepsToHome;
  20.  
  21.                     break;
  22.                 }
  23.                 else
  24.                 {
  25.                     steps += int.Parse(input);
  26.                 }
  27.             }
  28.  
  29.             if (steps >= 10000)
  30.             {
  31.                 int difference = steps - 10000;
  32.                 Console.WriteLine("Goal reached! Good job!");
  33.                 Console.WriteLine($"{difference} steps over the goal!");
  34.             }
  35.             else
  36.             {
  37.                 int difference = 10000 - steps;
  38.                 Console.WriteLine($"{difference} more steps to reach goal.");
  39.             }
  40.         }
  41.     }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement