死亡伯爵


私信TA

用户名:1124615130

访问量:20177

签 名:

Life is not what we have gained but what we have done.

等  级
排  名 885
经  验 3544
参赛次数 1
文章发表 33
年  龄 19
在职情况 学生
学  校 XiDianUniversity
专  业 ComputerScience

  自我简介:

解题思路:

注意事项:

字符串不超过100,则数组长度应该定为101(或者更大),因为要给'\0'留一个位置。

参考代码:

#include<cstdio>

int main(){

char str1[101];

char str2[101];

while(scanf("%s%s",&str1,&str2)==2){

int rear=0;

bool tag=true;

for(;str1[rear]!='\0';rear++);

for(int i=0;str2[i]!='\0';i++){

if(rear<100){

str1[rear]=str2[i];

rear++;

}else{

printf("Result String is cutted.\n");

tag=false;

break;

}

}

str1[rear]='\0';

if(tag)

printf("%s\n",str1);

}

return 0; 

}


 

0.0分

0 人评分

  评论区

又是你的暴力破解,嘿嘿嘿
2019-04-07 14:36:28
  • «
  • 1
  • »