Graphical Representation of a Quadratic Function en C#

In this exercise, we will create a C# program to visualize the quadratic function \( y = (x - 4)^2 \) for integer values of \( x \) ranging from -1 to 8. Instead of displaying numerical values, the program will represent each \( y \) value using asterisks (*), where the number of asterisks corresponds to the function's output. This will create a simple vertical graph that visually represents the function's behavior.



Group

C# Basic Data Types Overview

Objective

1. Use a loop to iterate through values of \( x \) from -1 to 8.
2. Compute \( y \) using the given quadratic formula \( y = (x - 4)^2 \)
3. Display each \( y \) value as a row of asterisks, where the number of asterisks corresponds to the computed value of \( y \)
4. Ensure the output formatting is clear and visually represents the function's shape
5. Use appropriate comments to improve code readability

Write a C# program to "draw" the graphic of the function \( y = (x - 4)^2 \) for integer values of \( x \) ranging from -1 to 8. It will show as many asterisks on screen as the value obtained for "y".

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    static void Main()
    {
        // Define the range of x values
        int start = -1;
        int end = 8;

        Console.WriteLine("Graphical representation of y = (x - 4)^2");
        Console.WriteLine("-----------------------------------------");

        // Loop through values of x from -1 to 8
        for (int x = start; x <= end; x++)
        {
            // Compute the quadratic function y = (x - 4)^2
            int y = (x - 4) * (x - 4);

            // Print x value and its corresponding graphical representation using asterisks
            Console.WriteLine($"{x,2} | {new string('*', y)}");
        }
    }
}

 Output

Graphical representation of y = (x - 4)^2
-----------------------------------------
-1 | *****************
 0 | ********
 1 | *******
 2 | ****
 3 | *
 4 | 
 5 | *
 6 | ****
 7 | *******
 8 | ********

Share this C# Exercise

More C# Practice Exercises of C# Basic Data Types Overview

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#.

  • Speed Calculation from Distance and Time in C#

    In this exercise, we will write a C# program that calculates the speed of an object based on user input. The user will enter a distance in meters and the time taken to cover that d...

  • Surface Area and Volume of a Sphere in C#

    In this exercise, we will write a C# program that calculates the surface area and volume of a sphere based on a given radius. The user will input the radius, and the program will c...

  • Character Classification Using Switch in C#

    In this exercise, we will write a C# program that classifies a user-input symbol into one of three categories: a lowercase vowel, a digit, or any other symbol. The user will enter ...

  • Character Classification Using If Statements in C#

    In this exercise, we will write a C# program that classifies a user-input symbol into one of three categories: a lowercase vowel, a digit, or any other symbol. The user will enter ...

  • Inverted Right-Angled Triangle Pattern in C#

    In this exercise, we will write a C# program that generates an inverted right-angled triangle pattern based on a user-provided width. The user will input a number representing the ...

  • Prime Factorization of a Number in C#

    In this exercise, we will create a C# program that computes and displays the prime factorization of a user-provided number. Prime factorization is the process of breaking down a nu...