问题描述:
(2)阅读下面的程序,完成类似字符串复制的功能
#include<iostream>
using namespace std;
int main()
{
char str1[50]="I am a happy boy\'s daddy.",str2[50];
int i=0,j=0;
while(str1[i]!='\0')
{
if(str1[i]!=' ')
{
str2[j]=str1[i];
j++;
}
i++;
}
str2[j]='\0';//切记!!
cout<<"整理后的字符串"<<str2<<endl;
return 0;
}
请分别编制程序,完成下面的处理
(4)将 str1 和 str2 连接起来,仍存放在 str1 中;
代码:
#include<iostream>
using namespace std;
int main()
{
char str1[100]={"One thorn of experience is worth a whole wilderness of warning."};
char str2[100]={"(James Russell Lowell, British Poet and critic) "};
int i=0,j=0;
while(str1[i]!='\0')
i++;
j=0;
while(str2[j]!='\0')
str1[i++]=str2[j++];
str1[i]='\0';
cout<<"处理后的字符串是: "<<str1<<endl;
return 0;
}
运行 结果: