发布网友 发布时间:2022-04-20 18:55
共1个回答
热心网友 时间:2023-07-06 18:44
++可以使用如下方式输入字符串:
方式一,使用cin>>操作符输入:
#include <iostream>
using namespace std;
void main()
{
char s[50];//字符数组,用于存放字符串的每一个字符
cout<<"Please input a string"<<endl;
cin>>s;
cout<<"The string you input is"<<s<<endl;
}
方式2,使用scanf函数输入:
#include <iostream>
#include<cstdio>
using namespace std;
void main()
{
char s[50];//字符数组,用于存放字符串的每一个字符
print("Please input a string");
scanf(“%s",s);//这种输入会忽略开始的空白字符,在开始读入后读至下一个空白字符时停止(空白字符包括换行符“\n”,空格“ ”,空白字符"\0")
cout<<"The string you input is"<<s<<endl;
}追问cin 和cout怎么把他输出在另外一个程序,比如要把s输出在qq的对话框上该怎么写呢