Bu örneğimizde iç içe For Döngüsü kullanarak basit bir çarpım tablosu oluşturacağız.
C# Console Application oluşturulan iki farklı örneğe ait kodlar ve ekran çıktısı aşağıdadır.
Örnek 1:
Kodlar:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
static void Main(string[] args) { //www.yazilimkodlama.com for (int j = 1; j <= 10; j++) { for (int i = 1; i <= 10; i++) { Console.Write("{0}*{1}={2}\t", i, j, (i * j)); } Console.WriteLine(); } Console.ReadKey(); } |
Ekran Çıktısı:
Örnek 2:
Kodlar:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
static void Main(string[] args) { //www.csharp-console-examples.com for (int i = 1; i <= 10; i++) { for (int j = 1; j <= 10; j++) { Console.WriteLine("{0}*{1}={2}", i, j, (i * j)); } Console.WriteLine("============="); } Console.ReadKey(); } |
Ekran Çıktısı:
a=1
b=1
while a<=10:
print(b,"*",a,"=",a*b)
a+=1
while a==11:
a=1
b+=1
continue
if b == 11:
break