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
s
30272 Ex if...
Square Integer Matrix
Problem: on_off
RegularExpressions
How do I calculate someone's age in C#?
4.3 Static typing: benefits, drawbacks and ways to minimise them
Hello world... I need cc!!
проект из 7 главы
Testing 002