写一个小程序,从标准输入读入字符串序列,直到出现相同的词或者所有的词都已经被 输入,用while 循环每次读入

写一个小程序,从标准输入读入字符串序列,直到出现相同的词或者所有的词都已经被 输入,用while 循环每次读入,第1张

#include <拦耐iostream>

#include <誉衡余string>

using namespace std

int main()

{

string str[128]

string tmp

int y=0,x=0

while(1)

{

cout<<"now,input a word:"

getline(cin,tmp)

//getchar()

for(int i=0i<128i++)

{

if(str[i]==tmp)

{

cout<<"find the some word:"<<tmp<<endl

cout<<"break out from while"<<endl

y=1

break

}

else y=0

}

if(y==1)break

cout<<"no find the some,continue\庆滚n"

str[x]=tmp

x++

}

system("pause")

return 0

}

假设数组伏袜名为tp

取第一个:tp[0].QuestionTypeName

取下面的数组:

tp[0].ti[0].QuestionContent

tp[0].ti[0].QuestionId

tp[0].ti[0].QuestionTypeId

tp[0].ti[0].xuanxiang[0].QuestionSelectId

tp[0].ti[0].xuanxiang[0].QuestionSelectContent

tp[0].ti[0].xuanxiang[0].IsAnswer

你将数尺厅陆组下标替换为循环索引即可陵顷。

如:for(var i = 0,j=tp.lengthi <ji++){

tp[i].QuestionTypeName

...........

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12543604.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-26
下一篇 2023-05-26

发表评论

登录后才能评论

评论列表(0条)

保存