Group
Getting Started with C# Programming
Objective
The objective of this exercise is to develop a C# program that prompts the user for their age and then displays a message that incorporates the entered age in a personalized response.
Write a C# program to ask the user for their age (e.g. 20) and respond with something like "You look younger than 20" (the age entered by the user should be displayed in place of "20").
Example C# Exercise
Show C# Code
// First and Last Name: John Doe
using System;
namespace AgeResponse
{
class Program
{
// The Main method is where the program execution begins
static void Main(string[] args)
{
// Declare a variable to store the user's age
int age;
// Prompt the user to enter their age
Console.Write("Enter your age: ");
age = Convert.ToInt32(Console.ReadLine()); // Read and convert the input to an integer
// Display the response message with the user's age included
Console.WriteLine("You look younger than {0}!", age);
// Wait for the user to press a key before closing the console window
Console.ReadKey(); // This keeps the console window open until a key is pressed
}
}
}
Output
Enter your age: 25
You look younger than 25!