Tuesday 21 February 2017

stars print in traingle shape in c# using for loop

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication29
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("print stars in traingle shape");
         int val = 5;
         int i, j, k ;
         for (i = 1; i <= val; i++)
         {
            for (j = 1; j <= val-i; j++)
            {
               // Console.Write("");
            }
            for (k = 1; k <= i; k++)
            {
               Console.Write("*");
            }
            Console.WriteLine("");
         }
         Console.ReadLine();

        }
    }
}

output screenshot:







No comments:

Post a Comment