1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
string tab, tab1, tab2, tab3, marca, modelo, anio, color, pw, pl, alarm, ac, puertas, trans, condu, tel;
//all these variables are necessary because I have treat each column as a different piece of information//
ifstream archivo;
archivo.open("dealer-data.txt");
//proof that the file is opening correctly//
if(!archivo)
cout<<"Error. File could not be opened";
cout<<"Write the license plate you wish to get information about: ";
getline(cin,tab);
//Obtain the value of each license plate//
getline(archivo,tab1,' ');
archivo.seekg(96,ios::beg); //moves the cursor to the next line
getline(archivo,tab2,' ');
archivo.seekg(89,ios::cur); //moves the cursor the the next line
getline(archivo,tab3,' ');
if (tab==tab1)
cout<<"Tablilla 1";
else if (tab==tab2)
{
cout<<"Tablilla 2";
}
else if (tab==tab3)
cout<<"Tablilla 3";
else
{
cout<<"License plate does not exist";
}
|