êµ¬êµ¬ë‹¨ì„ ë§Œë“¤ì–´ ë†“ì€ íŽ˜ì´ì§€ìž…니다. ---- {{{~cpp #include<iostream> using namespace std; int main() { for(int i=1; i<10 ; i++) { for(int j=2; j<6; j++) { cout<<j<<"*"<<i<<"="<<j*i<<"\t"; } cout<<endl; ; } cout<<endl; for(int k=1; k<10 ; k++) { for(int l=6; l<10; l++) { cout<<l<<"*"<<k<<"="<<k*l<<"\t"; } cout<<endl; } return 0; } }}} ---- ["구구단"]