美文网首页PAT
PAT1008打卡-0910

PAT1008打卡-0910

作者: 可爱的甜甜猪 | 来源:发表于2020-09-11 00:32 被阅读0次

    #include <iostream>

    using namespace std;

    int main()

    {

        int N,M;

        cin>>N>>M;

        int a[200];

        while(M>N)

    {

    M=M-N;

    }

        int temp=0;

        for(int i=100;i<100+N;i++)

        {

            cin>>a[i];

        }

        for(int i=100-M;i<100;i++)

        {

            a[i]=a[i+N];

        }

        for(int i=100-M;i<100-M+N-1;i++)

        {

            cout<<a[i]<<" ";

        }

        cout<<a[100-M+N-1];

        return 0;

    }

    相关文章

      网友评论

        本文标题:PAT1008打卡-0910

        本文链接:https://www.haomeiwen.com/subject/mqeyektx.html