我在代碼塊上使用gcc
,我想編寫一個使用記錄數組的函數。從'int'無效轉換爲'const char *'
不過,我不斷收到錯誤:
invalid conversion from 'int' to 'const char*'
代碼:
#include <iostream>
#include <string>
using namespace std;
struct rendeles {
string nev;
int mennyiseg;
};
struct teaceg {
string nev;
int mennyiseg;
};
int szam;
struct rendeles rendelt [100];
struct teaceg cegek [100];
int h;
int hanyadikceg (string cegnev)
{
for (int i=0;i<szam;i++)
{
if (cegek[i].nev==cegnev)
{
return i;
}
}
return -1;
}
int main()
{
cout << "Hány db rendelés lesz összesen?";
cin >> szam;
if (szam > 100)
{
cout << "Hiba: túl nagy a rendelések száma! (100 a maximum)";
return -1;
}
for (int i=0;i<szam;i++)
{
cout << "A(z) " << i+1 <<". cég neve:";
cin >> rendelt[i].nev;
cout << "A(z) " << i+1 <<". rendelés mennyisége:";
cin >> rendelt[i].mennyiseg;
}
cout << endl;
h = hanyadikceg('Lipton'); //the problem is in this line
cout << "Hanyadik cég a xyz:" << h;
for (int i=0;i<szam;i++)
{
cout << "A(z) " << i+1 << ". rendelés: " << rendelt[i].nev << " " << rendelt[i].mennyiseg << endl;
}
return 0;
}
是什麼原因導致這個錯誤?
是 '立頓' 或 「立頓」? – UmNyobe 2012-03-14 13:05:03
btw:在編程的通用語言中使用函數和變量名稱使獲得幫助變得容易得多,因爲更多的人能夠理解代碼。 – PlasmaHH 2012-03-14 13:05:49
只是好奇,這是什麼語言(我不明白)? – 2012-03-14 13:09:15