728x90
728x170
9 X 9 Multiplication Table
1
2
3
4
5
6
7
8
9
10
11
12
13
14 |
#include <stdio.h>
int main(void) {
printf("Multiplication Table (9X9) \n");
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
printf("%d * %d = %d \n", i + 1, j + 1, (i+1)*(j+1));
}
printf("\n");
}
return 0;
} |
cs |
18 X 18 Multiplication Table
1
2
3
4
5
6
7
8
9
10
11
12
13
14 |
#include <stdio.h>
int main(void) {
printf("Multiplication Table (18X18) \n");
for (int i = 0; i < 19; i++) {
for (int j = 0; j < 19; j++) {
printf("%d * %d = %d \n", i + 1, j + 1, (i + 1)*(j + 1));
}
printf("\n");
}
return 0;
} |
cs |
728x90
그리드형(광고전용)
'Source Code > C' 카테고리의 다른 글
중위 표기 수식을 후위 표기 수식으로 변환하는 프로그램 (0) | 2017.05.16 |
---|---|
후위 표기식 계산 프로그램 (5) | 2017.05.16 |
괄호 검사 프로그램 (0) | 2017.05.11 |
연결 리스트로 구현된 리스트 ADT 테스트 프로그램 (0) | 2017.05.08 |
이중 연결 리스트의 다항식 프로그램 (0) | 2017.05.08 |
별 찍기 (Asterisk Decoration) in C (0) | 2017.05.03 |
Numbers in Ascending/Descending Order with using Recrusion in C (0) | 2017.04.17 |
Sum of Numbers in Ascending/Descending Order with using Recursion in C (0) | 2017.04.17 |