输入10个字符串,每个字符串以回车结束
发布网友
发布时间:2022-07-19 05:03
我来回答
共2个回答
热心网友
时间:2023-10-14 05:55
给你个C++的程序:
#include <iostream>
#include <string>
using namespace std;
int mian()
{
string str[10];
for(int i=0;i<10;++i)
{
cout<<"Please enter a word."<<endl;
cout<<"If you want to quit,please input stop."<<endl;
cin>>str[i];
if(str=="stop")
{
break;
}
}
//Output the ten strings
for(int i=0;i<10;++i)
{
cout<<str[i]<<endl;//
}
return 0;
}
热心网友
时间:2023-10-14 05:55
C语言就这样:
char s[100];
int n=10;
while(n--)
{
gets(s);
if(ctrcmp(s,"stop")==0)break;
}