Advertisement
Dianov

Basic Syntax, Conditional Statements and Loops - Exercise (08. Triangle of Numbers)

Mar 26th, 2021
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.75 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace TriangleOfNumbers
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int n = int.Parse(Console.ReadLine());
  14.  
  15.             for (int rows = 1; rows <= n; rows++)
  16.             {
  17.                 for (int columns = 1; columns <= rows; columns++)
  18.                 {
  19.                     if (columns < rows)
  20.                     {
  21.                         Console.Write($"{rows} ");
  22.                     }
  23.                     else
  24.                     {
  25.                         Console.WriteLine(rows);
  26.                     }                  
  27.                 }
  28.             }
  29.         }
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement