编写一个程序,它要求用户首先输入其名,然后输入其姓;然后程序使用一个逗号和空格将其姓和名组合起来,

并存储和显示组合结果。
使用char数组和头文件cstring中的函数。
注意是头文件cstring,而不是string!

第1个回答  2013-09-11
#include <iostream>
#include <cstring>
const int SIZE = 20;
int main()
{
usingnamespace std;
charfirstName[SIZE];
charlastName[SIZE];
charfullName[2*SIZE + 1];

cout<< "Enter your first name: ";
cin>> firstName;
cout<< "Enter your last name: ";
cin>> lastName;
strncpy(fullName,lastName,SIZE);
strcat(fullName, ", ");
strncat(fullName, firstName, SIZE);
fullName[SIZE - 1] = '\0';
cout<< "Here's the information in a single string: "
<< fullName << endl;
return0;
}本回答被网友采纳
相似回答