问题标题: 酷町堂:3951

0
1
已解决
赵奕帆
赵奕帆
初级守护
初级守护

这道题哪里错了?

#include<iostream>
using namespace std;
int main(){
    int n,m,a=97;
    cin>>n>>m;
    for(int i=1;i<=n;i++){
        if(i!=m+1){
            cout<<char(a)<<" ";
            a++;
        }
        else{
            break;
        }
    }
    cout<<endl;
    for(int j=1;j<=n-m-1;j++){
        cout<<char(a)<<' ';
        a++;
    }
    return 0;
}

 


0
0
0
吴庞茂旭
吴庞茂旭
资深光能
资深光能

不会……赵奕凡……sorre……

0
0
被禁言 姜成禹
姜成禹
新手守护
新手守护

for(int j=1;j<=n-m-1;j++){

cout<<char(a)<<' ';

a++;

}

改成:

for(int j=1;j<=n-m;j++){

cout<<char(a)<<' ';

a++;

}

我要回答