码迷,mamicode.com
首页 > 编程语言 > 详细

【PAT】B1008 数组元素循环右移问题(20 分)

时间:2018-08-18 19:34:36      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:algo   can   pat   std   循环   for   数组   void   数组元素   

#include<cstdio>
#include<malloc.h>
#include<algorithm>
int arr[101];
void Priarr(int a,int b){
    if(a<=b)
    for(int i=a;i<=b;i++){
        if(i!=a)printf(" ");
        printf("%d",arr[i]);
    }
}
int main(){
    int N,M;
    scanf("%d%d",&N,&M);
    for(int i=1;i<=N;i++){//从1开始存储
        scanf("%d",&arr[i]);
    }
    M%=N;
    Priarr(N-M+1,N);
    if(N-M+1<N)printf(" ");
    Priarr(1,N-M);
    return 0;
}

【PAT】B1008 数组元素循环右移问题(20 分)

标签:algo   can   pat   std   循环   for   数组   void   数组元素   

原文地址:https://www.cnblogs.com/hebust/p/9498136.html

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