提交时间:2023-08-23 08:14:33
运行 ID: 99536
#include<bits/stdc++.h> using namespace std; int main(){ int a[1005]; int now=1; for(int i=1;i<=26;i++){ a[now]=i; now++; if(i%2==0){ now--; } } for(int i=now-1;i>=1;i--){ cout<<char('a'+a[i]-1)<<" "; } return 0; }