Algoritma
- Başla
- i = 1, j = 1 değişkenlerini al
- Yazdır i * j
- Eğer ( j = 10 ) ise devam et, değilse j++
- Eğe i = 10 ise devam et, değilse i++, j = 1 yap
- Bitir
Kod:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dmg
{
class Program
{
static void Main(string[] args)
{
for( int i = 1; i <= 10; i++)
{
Console.WriteLine("");
for(int j = 1; j <= 10; j++)
{
Console.WriteLine(i + "*" + j + "=" + ( i * j ) );
}
}
Console.ReadLine();
}
}
}