Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
starpattern
//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 row=1 ; row < 10 ; row ++) { for (int col = 1; col < row ; col++) { Console.Write("*"); } Console.WriteLine(); } Console.WriteLine(); Console.WriteLine(); Console.WriteLine(); int n = 10; for(int row = n ;row >=0 ; row--) { for (int col = 1; col<row ; col++) { Console.Write("*"); } Console.WriteLine(); } } } }
run
|
edit
|
history
|
help
0
comparer implementation
string concat
Fibonacci recursion
Chris Kasongo Lazarius Mukengeshayi "Entelect BlackJack 21"
SingleDelegate
9
Odd and Even Product
Delegate test lambda
Towers of Hanoi
Hello world