码迷,mamicode.com
首页 > 其他好文 > 详细

【入门OJ】1060:数字走向Ⅴ

时间:2017-09-15 22:39:51      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:ima   pac   max   cstring   algo   namespace   std   clu   space   

技术分享

估计是没有花样再考了QAQ,都这么水了!

技术分享
#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#define MAXN
using namespace std;
int n;

int main(){
    scanf("%d",&n);
    for(int i=n;i>=1;i--){
        for(int j=i*n;j>=(i-1)*n+1;j--){
            printf("%3d",j);
        }
        printf("\n");
    }
    return 0;
}
数字走向V

 

【入门OJ】1060:数字走向Ⅴ

标签:ima   pac   max   cstring   algo   namespace   std   clu   space   

原文地址:http://www.cnblogs.com/Parry-PY/p/7528569.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!