码迷,mamicode.com
首页 > 其他好文 > 详细

基础训练 FJ的字符串

时间:2019-02-03 20:56:35      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:return   cpp   ble   tcp   ace   iostream   namespace   ios   code   

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的字符串

标签:return   cpp   ble   tcp   ace   iostream   namespace   ios   code   

原文地址:https://www.cnblogs.com/A-Little-Nut/p/10350974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!