#include <iostream> using namespace std; int main(){ cout<<" Nine-by-nine Multiplication Table"<<endl; cout<<"--------------------------------------"<<endl; cout<<" 1 2 3 4 5 6 7 8 9"<<endl;; cout<<"--------------------------------------"<<endl; for(int i=1;i<=9;i++){ cout<<" "<<i<<" "; for(int j=1;j<=i;j++) printf("%2d ",i*j); cout<<endl; } cout<<"--------------------------------------"<<endl; return 0; }
0.0分
0 人评分
A+B for Input-Output Practice (V) (C++代码)浏览:485 |
【亲和数】 (C语言代码)浏览:530 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:1482 |
完数 (C语言代码)浏览:757 |
printf基础练习2 (C语言代码)浏览:653 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:513 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:721 |
程序员的表白 (C语言代码)浏览:678 |
大神老白 (C语言代码)浏览:637 |
震宇大神的杀毒软件 (C语言代码)浏览:1162 |