c++如何输入字符数组以回车结束

求代码
2024-12-04 00:11:50
推荐回答(4个)
回答1:

可以用gets函丛早数解决渗耐雀,代码如下亩哪:

回答2:

可以用gets函数解决,代码如下:

#include
int main()
{
    char str1[20];
    printf("请str1输入字符串(gets方式):\n"配辩);
  培野缺脊兆  gets(str1);
    printf("下面输出str1(puts方式):\n");
    puts(str1);
    return 0; 
}

回答3:

#include

#include <手知兄iostream>
using namespace std;

void main()
{
string line;
getline(cin, line);
cout <<猛码 line <<毕袭 endl;
}

回答4:

#include 备锋
using namespace std;
int main() {
char arr[20];
cin >>咐腔 arr;
cout <衡滚衫< arr;
}