编制程序,按照下述格式打印九九乘法表。
输出样例:
Nine-by-nine Multiplication Table
————————————–
1 2 3 4 5 6 7 8 9
————————————–
1 1
2 2 4
3 3 6 9
4 4 8 12 16
5 5 10 15 20 25
6 6 12 18 24 30 36
7 7 14 21 28 35 42 49
8 8 16 24 32 40 48 56 64
9 9 18 27 36 45 54 63 72 81
————————————–
注意:表头的大小写要和样例一致,短线“-”个数要与样例中一致,否则系统会判为错误。
1 2 3 4 5 6 7 8 9 10 11 12 |
#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; cout << " 1 1\n2 2 4\n3 3 6 9\n4 4 8 12 16\n5 5 10 15 20 25\n6 6 12 18 24 30 36\n"; cout << "7 7 14 21 28 35 42 49\n8 8 16 24 32 40 48 56 64\n9 9 18 27 36 45 54 63 72 81\n"; cout << "--------------------------------------"; return 0; } |
❤ 点击这里 -> 订阅《PAT | 蓝桥 | LeetCode学习路径 & 刷题经验》by 柳婼