구구단을 짜놓은 페이지입니다. ---- {{{~cpp #include using namespace std; int main() { int i,j; for (j=1; j<10 ;j++) {for(i=2; i<6; i++) cout << i << " X " << j << " = " << i*j << "\t"; cout << endl;} cout << "\n"; for (j=1; j<10 ;j++) {for(i=6; i<10; i++) cout << i << " X " << j << " = " << i*j << "\t"; cout << endl;} return 0; } }}} ---- ["구구단"]