Age-Based Response in C#

In this exercise, you will create a C# program that asks the user to enter their age and then responds with a friendly message, such as:

"You look younger than [age entered]"

This exercise will help you practice working with user input, string concatenation, and formatted output in C#. By completing this task, you will strengthen your ability to interact with users through the console and dynamically generate output based on their input.



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

 Copy 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!  

Share this C# Exercise

More C# Practice Exercises of Getting Started with C# Programming

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Displaying a Number in Different Formats in C#

    In this exercise, you will create a C# program that prompts the user for a number and displays it in two different formats: 1. The number should be printed four times in a row, ...

  • Displaying a Number as a 3x5 Rectangle in C#

    In this exercise, you will create a C# program that prompts the user for a single-digit number and then uses that digit to draw a 3-column by 5-row rectangle. The rectangle follows...

  • Celsius to Kelvin and Fahrenheit Converter in C#

    In this exercise, we will create a C# program that converts a temperature value from Celsius to both Kelvin and Fahrenheit. The program will prompt the user to input a temperature ...

  • Introduction to C# Programming

    In this exercise, you will get introduced to the C# programming language and its basic syntax. You'll learn how to write your first C# program, understand how the structure of a C#...

  • Simple Addition in C#

    In this exercise, you will write a basic C# program that performs a simple addition of two numbers, 12 and 13. This will help you understand how to perform basic arithmetic operati...

  • Simple Division in C#

    In this exercise, you will write a basic C# program that performs a simple division operation. The program will divide 24 by 5 and display the result. This exercise will help you u...