Showing
1 changed file
with
18 additions
and
0 deletions
Desktop/github/gugudan/main.cpp
0 → 100644
1 | +// | ||
2 | +// main.cpp | ||
3 | +// gugu | ||
4 | +// | ||
5 | +// Created by 정나리 on 2021/10/08. | ||
6 | +// | ||
7 | + | ||
8 | +#include <iostream> | ||
9 | +using namespace std; | ||
10 | + | ||
11 | +int main() { | ||
12 | + for (int i = 1 ; i <9 ; i++) { | ||
13 | + for (int j = 1 ; j <10 ; j++){ | ||
14 | + cout<< i << " * " << j << " = " << i * j << endl; | ||
15 | + } | ||
16 | + cout << endl; | ||
17 | + } | ||
18 | +} |
-
Please register or login to post a comment