c++如何在另一个程序输入框输入字符
是另外的一个程序,如何实现我打开这个c++程序可以让那个程序的输入框输入我要的字符并发送,有点类似刷屏的那种软件...
是另外的一个程序,如何实现我打开这个c++程序可以让那个程序的输入框输入我要的字符并发送,有点类似刷屏的那种软件
展开
1个回答
展开全部
++可以使用如下方式输入字符串:
方式一,使用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>>操作符输入:
#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的对话框上该怎么写呢
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询