摘要:
#include <iostream>using namespace std;int main() { int j; int k; cout<<"打印九九乘法表"<<endl; for(j=1;j<=9;j++) for(k=1;k<=9;k++) if(k==9)cout<<" "<<j*k<<endl; else cout<<" "<<j*k;} 另一种版本的九九乘法表 #include<iostream> us 阅读全文
posted @ 2013-05-22 22:04
时间淡无痕
阅读(292)
评论(0)
推荐(0)