{
static void Main()
{
// Variables to hold the runner's status and music status
string runnerStatus = "Running";
string musicStatus = "Listening to music";
// Display the initial status
Console.WriteLine("The runner is: " + runnerStatus);
Console.WriteLine("The runner is: " + musicStatus);
// Motivational messages
string runningMessage = "The runner is getting faster!";
string musicMessage = "The music is motivating the runner!";
// Simulate the runner and music activity
Console.WriteLine("\nPress any key to simulate running and music...");
Console.ReadKey();
// Update and display new status
Console.WriteLine("\nNow, the runner is: " + runnerStatus);
Console.WriteLine("The runner is: " + musicStatus);
Console.WriteLine("The runner is speeding up with the rhythm of the music!");
}
}
Global chart history
Top position held by this upload
Comments