基础训练 FJ的字符串
Posted a-little-nut
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础训练 FJ的字符串相关的知识,希望对你有一定的参考价值。
#include<iostream>
#include<string.h>
using namespace std;
int main(){
string str="";
int N;
cin>>N;
for(int i=0; i<N; i++){
string s=str;
str.append(1,'A'+i);
str+=s;
}
cout<<str<<endl;
return 0;
}
以上是关于基础训练 FJ的字符串的主要内容,如果未能解决你的问题,请参考以下文章