TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

C# Program to print Number Triangle

C# Program to print Number Triangle for beginners and professionals with examples on overloading, method overriding, inheritance, aggregation, base, polymorphism, sealed, abstract, interface, namespaces, exception handling, file io, collections, multithreading, reflection etc.

<< Back to C-SHARP

C# Program to print Number Triangle

Like alphabet triangle, we can write the C# program to print the number triangle. The number triangle can be printed in different ways.

Let's see the C# example to print number triangle.

using System;
  public class PrintExample
   {
     public static void Main(string[] args)
      {
       int  i,j,k,l,n;         
       Console.Write("Enter the Range=");  
       n= int.Parse(Console.ReadLine());   
       for(i=1; i<=n; i++)    
       {    	
        for(j=1; j<=n-i; j++)    
        {    
         Console.Write(" ");    
        }    
        for(k=1;k<=i;k++)    
        {    
         Console.Write(k);    
        }    
        for(l=i-1;l>=1;l--)    
        {    
        Console.Write(l);    
        }    
        Console.Write("\n");    
       }     
   }
  }

Output:

Enter the Range=5
     1
    121
   12321
  1234321
 123454321  
Enter the Range=6
      1
     121
    12321
   1234321 
  123454321
 12345654321  




Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf