标签:style blog color os io for div log
#include<iostream> #include<iomanip> using namespace std; int main() { for(int i=1;i<=9;i++) { for(int j=1;j<=i;j++) { cout<<setw(2)<<i<<"*"<<j<<"="<<i*j; if(i==j) { cout<<endl; } } } return 0; }
#include<iostream> #include<iomanip> using namespace std; int main() { for(int i=1;i<=9;i++) { for(int j=i;j<=9;j++) { cout<<setw(2)<<i<<"*"<<j<<"="<<i*j; if(j==9) { cout<<endl; } } } return 0; }
标签:style blog color os io for div log
原文地址:http://www.cnblogs.com/jixiaowu/p/3895134.html