博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
An easy problem
阅读量:5318 次
发布时间:2019-06-14

本文共 1120 字,大约阅读时间需要 3 分钟。

An easy problem

Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 2563    Accepted Submission(s): 1806

Problem Description

In this problem you need to make a multiply table of N * N ,just like the sample out. The element in the i
th row and j
th column should be the product(乘积) of i and j.
 

Input

The first line of input is an integer C which indicate the number of test cases.
Then C test cases follow.Each test case contains an integer N (1<=N<=9) in a line which mentioned above.
 

Output

For each test case, print out the multiply table.
 

Sample Input
2
1
4
 

Sample Output
1
1 2 3 4
2 4 6 8
3 6 9 12
4 8 12 16
#include 
int main( ) {
int N, T; scanf("%d", &T); while(T--) {
scanf("%d", &N); int i, j, flag = 0; for(i = 1; i <= N; i++) {
for(j = 1; j <= N; j++) {
if (!flag) printf("%d",i * j), flag = 1; else printf(" %d",i *j); } flag = 0; puts(""); } } return 0; }

Hint

转载于:https://www.cnblogs.com/tangcong/archive/2011/08/16/2141633.html

你可能感兴趣的文章
PHP魔术方法之__call与__callStatic方法
查看>>
【模板】对拍程序
查看>>
【转】redo与undo
查看>>
Django 模型层
查看>>
dedecms讲解-arc.listview.class.php分析,列表页展示
查看>>
安卓当中的线程和每秒刷一次
查看>>
wpf样式绑定 行为绑定 事件关联 路由事件实例
查看>>
TCL:表格(xls)中写入数据
查看>>
Oracle事务
查看>>
String类中的equals方法总结(转载)
查看>>
标识符
查看>>
给大家分享一张CSS选择器优选级图谱 !
查看>>
Node.js 入门:Express + Mongoose 基础使用
查看>>
一步步教你轻松学奇异值分解SVD降维算法
查看>>
objective-c overview(二)
查看>>
python查询mangodb
查看>>
Swift的高级分享 - Swift中的逻辑控制器
查看>>
内存地址对齐
查看>>
创新课程管理系统数据库设计心得
查看>>
Could not resolve view with name '***' in servlet with name 'dispatcher'
查看>>