我有一個結構,它擁有兩個名稱,但它們是字符形式 - 所以數組 char [2] [10] 它應該是兩個名稱,它們是最長十個字符。 我想通過它們進行搜索。如何搜索結構/文件中的名稱
while (ans3==1)
{
cout << "\nPlease enter the name you want to search"
<<endl;
cin >> searchName;
for (int i=0; i < size; i++)
{
cout <<"\nsearching " <<endl;
for (int k=0; k< 10; k++)
if (MyData.name[i][k]==searchName[k])
{
cout << "\nName was found at position "<< k <<endl;
}
else
cout << "\nName not found at position " <<k <<endl;
}
cout << "\nDo you want to search for a name? (1 for y, 2 for n)" <<endl;
cin >> ans3;
}
這個編譯,但沒有做我想做的事。有人可以幫助嗎?謝謝。
如果字符串少於9個字符,'for(int k = 0; k <10; k ++)'將在字符串結束後繼續搜索。考慮使用['strncmp'](http://en.cppreference.com/w/c/string/byte/strncmp)。 – user4581301