循环语句 + 字符串操作
2023-08-05 17:35:29
发布于:上海
3阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
string a="4567",b="123";
string c;
int n;
cin>>n;
while(c.length()<=n){
c=b+a;
a=b;
b=c;
}
cout<<c[n-1];
return 0;
}
这里空空如也
有帮助,赞一个