summaryrefslogtreecommitdiff
path: root/deneme_14.c
blob: ce9c95f47f5bafd65af5c2b66e1170a83a3daf19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

int main() 
{
	for (int i1=1; i1 <= 10;i1++){

		for (int i2=1; i2 <= 10;i2++){
			printf("%2d * %2d: %3d \n",i1,i2,(i1 * i2));
		}

		printf("\n");

	}
}