入门OJ1064:斜角Ⅰ

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了入门OJ1064:斜角Ⅰ相关的知识,希望对你有一定的参考价值。

技术分享

只要不斜着斜着看,横着看很美好的!亲爱的对角线也没有了QAQ

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

int main(){
    scanf("%d",&n);
    for(int i=1;i<=n;i++){
        for(int j=i;j<=i+n-1;j++){
            printf("%3d",j);
        }
        printf("\\n");
    }
    return 0;
}
斜角I

 

以上是关于入门OJ1064:斜角Ⅰ的主要内容,如果未能解决你的问题,请参考以下文章

入门OJ1067:斜角Ⅳ

入门OJ1062:对角线Ⅰ

基于C#解决OJ刷题之输入输出问题的总结(AKOJ1064-1071A+B问题汇总)

九度oj 1064 反序数

Light OJ 1064 - Throwing Dice

OJ_1064.计算斐波那契第n项