Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
pattern
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { for(int i=1;i<=5;i++) { for(int j=5;j>=1;j--) { if(j<=i) { Console.Write("* "); } else { Console.Write(" "); } } Console.WriteLine("\n"); } } } }
run
|
edit
|
history
|
help
0
Wild West of Meming
D111
Fibonacci and finding nth fibo number
CodeAdvent
pointoncircle
pattern2
5
from Base or Derived
Add Two String Numbers which may be large - Author MC
Generics