Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

구구단/김상윤

From ZeroWiki

구구단을 만들어 놓은 페이지입니다.


#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; 
} 

구구단