C++入门经典-例6.5-连接字符串

1:运行代码如下:

// 6.5.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include<iostream>
using std::cout;
using std::endl;
using std::cin;
void main()
{
    char str1[30],str2[20];
    cout<<"请输入数组1:"<< endl;
    cin>>str1;
    cout<<"请输入数组2"<<endl;
    cin>>str2;
    if(30>strlen(str1)+strlen(str2))//strlen用于获取字符串长度
    {
        strcat(str1,str2);//字符串连接函数
        cout <<"Now the string1 is:"<<str1<<endl;
    }
    else 
        cout<<"操作失败"<<endl;
 }
View Code

运行结果:

posted @ 2017-09-16 15:12  一串字符串  阅读(366)  评论(0编辑  收藏  举报