Display Right-Aligned Triangle from a String in C#

This C# program takes an input string from the user and displays it in the form of a right-aligned triangle. The triangle starts with a single character from the input string and progressively adds the next characters until it completes the full string. The output will align to the right, with the characters being stacked line by line, increasing in length. This exercise will help you practice string manipulation and formatting in C#.



Group

C# Arrays, Structures and Strings

Objective

1. Prompt the user to enter a string.
2. For each character in the string, print a line of increasing length starting from 1 character and ending with the entire string.
3. Make sure the output is right-aligned.
4. Use spaces to align the string properly to the right.

Write a C# program that asks the user for a string and displays a right-aligned triangle.

Enter a string: Juan
n
an
uan
Juan

Example C# Exercise

 Copy C# Code
using System;

class RightAlignedTriangle
{
    static void Main()
    {
        // Ask for user input
        Console.Write("Enter a string: ");
        string input = Console.ReadLine();
        
        // Loop through each position in the string
        for (int i = 1; i <= input.Length; i++)
        {
            // Calculate how many spaces are needed for right alignment
            string spaces = new string(' ', input.Length - i);
            // Print the substring of the string up to the current position
            Console.WriteLine(spaces + input.Substring(0, i));
        }
    }
}

 Output

Enter a string: Juan
   J
  Ju
 Jua
Juan

Share this C# Exercise

More C# Practice Exercises of C# Arrays, Structures and Strings

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

  • String Manipulation in C# 'Replace, Display Initials, and Modify Case'

    This C# program performs several operations on a string input by the user. First, it replaces all lowercase "a"s by uppercase "A"s, unless they are preceded by a space. Then, it ex...

  • C# Structs for Storing Personal Information

    This C# program demonstrates the use of structs to store personal information. The first struct stores the name and date of birth of a person, where the date of birth is represente...

  • Sorting 10 Integer Numbers in C#

    This C# program asks the user to input 10 integer numbers, each ranging from -1000 to 1000. After collecting all the numbers, the program sorts them in ascending order and then dis...

  • Randomly Placing Characters in a 2D Array in C#

    This C# program declares a 70x20 two-dimensional array of characters and randomly places 80 "X" characters in various positions within the array. After the random placement, it dis...

  • Drawing a Circumference in a 2D Array in C#

    In this C# program, we declare a 70x20 two-dimensional array of characters and "draw" a circumference with a radius of 8 inside it. The program calculates the points that make up t...

  • Managing Computer Program Records in C#

    In this C# program, we will create a system to store and manage up to 1000 records of computer programs. Each program will have the following attributes: Name, Category, Descriptio...