文章

5

粉丝

93

获赞

1

访问

2.2k

头像
字符串连接 题解:
P1397 华中科技大学
发布于2024年3月24日 14:21
阅读数 404

#include <bits/stdc++.h>
using namespace std; 

int main() {
    char s[101];
    string a;
    while(cin>>s){
        int len=strlen(s);
        for(int i=0;i<len;i++){
            if(s[i]!=' '){
                a[i]=s[i];
            }
            else{
            continue;    
            }
        }
        for(int i=0;i<len;i++){
            cout<<a[i];
        }
    }
 &...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发