w3resource

C#: Print a number four times in separate rows


C# Sharp Basic: Exercise-12 with Solution

Write a C# program that takes a number as input and displays it four times in a row (separated by blank spaces), and then four times in the next row, with no separation. You should do it twice: Use the console. Write and use {0}.

C# Sharp Exercises: Print a number four times in separate rows

Sample Solution:

C# Sharp Code:

using System;

// This is the beginning of the Exercise12 class
public class Exercise12
{
    // This is the main method where the program execution starts
    public static void Main()
    {
        int num; // Variable to store the digit entered by the user

        // Prompting the user to enter a digit
        Console.WriteLine("Enter a digit: ");
        // Reading the digit entered by the user and converting it to an integer
        num = Convert.ToInt32(Console.ReadLine());

        // Part A: "num num num num" using Write
        Console.Write(num);
        Console.Write(" ");
        Console.Write(num);
        Console.Write(" ");
        Console.Write(num);
        Console.Write(" ");
        Console.Write(num);
        Console.WriteLine();

        // Part B: "numnumnumnum" using Write
        Console.Write(num);
        Console.Write(num);
        Console.Write(num);
        Console.WriteLine(num);
        Console.WriteLine();

        // Part C: "num num num num" using {0}
        Console.WriteLine("{0} {0} {0} {0}", num);

        // Part D: "numnumnumnum" using {0}
        Console.WriteLine("{0}{0}{0}{0}", num);
    }
}

Sample Output:

Enter a digit:                                                                                                
2                                                                                                             
2 2 2 2                                                                                                       
2222                                                                                             
2 2 2 2                                                                                                       
2222

Flowchart:

Flowchart: C# Sharp Exercises - Print a number four times in separate rows

C# Sharp Code Editor:

Previous: Write a C# Sharp program that takes an age (for example 20) as input and prints something as "You look older than 20.
Next: Write a C# program that takes a number as input and then displays a rectangle of 3 columns wide and 5 rows tall using that digit.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.