当前位置: 代码迷 >> 综合 >> 1967-打印九九乘法表
  详细解决方案

1967-打印九九乘法表

热度:26   发布时间:2023-12-29 15:39:11.0

【C系列3.23】单总说:一道简单题5 1967

Time Limit:  1 s      Memory Limit:   128 MB
Submission:352     AC:187     Score:17.25

 

Description

画一个九九乘法表。一个式子内没有空格,式子间有一个空格,每行最后一个式子后没有空格。前4行是这样的:
1*1=1
2*1=2 2*2=4
3*1=3 3*2=6 3*3=9
4*1=4 4*2=8 4*3=12 4*4=16

Input

Output

不能说

Hint

 暴力打表不可取啊


下附AC代码:

#include<stdio.h>
int main() {int h, g;for (h = 1; h <= 9; ++h) {for (g = 1; g <= h; ++g) {if (g < h) {printf("%d*%d=%d ", h, g, h * g);}else if (g == h) {printf("%d*%d=%d", h, g, h * g);}}printf("\n");}return 0;
}


原题链接: http://acm.hznu.edu.cn/OJ/problem.php?cid=1092&pid=0
  相关解决方案