我正在编写一个带有命令行界面的小程序。在这个程序中,我想要一个我设法创建的搜索功能。
但它是用于名字的字符搜索,但我想创建相同的功能,该功能将能够使用“学生注册号”进行搜索。
我遇到问题的搜索案例:
int kWord;
stdDetails stdFind;
cout<<"Enter the Student Registration Number of the Student: ";
cin>>kWord;
for(int x=0;x<i;x++){
stdFind = stdDetailsStructs_0[x];
if(!strcmp(kWord,stdFind.stdNum)){
search=1;
break;
}
}
if(search==1){
display(stdFind);
}else{
cout<<"Student details not found please try again."<<endl;
}