Skip to content

Commit 02f47bd

Browse files
authored
Create 03. Nums 1...20
1 parent ac9c16a commit 02f47bd

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

03. Nums 1...20

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System;
2+
3+
namespace Number_1_to_20_test
4+
{
5+
class Program
6+
{
7+
static void Main(string[] args)
8+
{
9+
for (int i = 1; i < 21; i++)
10+
11+
{
12+
Console.WriteLine(i);
13+
}
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)