私は次のコードを書きました....
#include< iostream>
#include< fstream>
using namespace std;
int main()
{
ifstream in("text1.dat",ios::in);
enum choice{zero=1, credit, debit, exit};
choice your;
int balance;
char name[50];
int option;
while(cin>>option)
{
if(option==exit)
break;
switch(option)
{case zero:
while(!in.eof())
{in>>balance>>name;
if(balance==0)
cout<<balance<<" "<<name<<endl;
cout<<in.tellg()<<endl;
}
in.clear();
in.seekg(0);
break;}
// likewise there are cases for debit and credit
system("pause");
return 0;
}
text1.dat のエントリは次のとおりです。
10 avinash
-57 derek
0 fatima
-98 gorn
20 aditya
出力は次のとおりです。
1 //i input this
16
27
0 fatima
36
45
55
-1 //(a)
3 //i input this
10 avinash
16
27
36
45
20 aditya
55
20 aditya //(b)
-1
私の質問は次のとおりです。
- 'a' とマークされた出力は -1 です... tellg() の出力として -1 とはどういう意味ですか?
- 「b」とマークされた出力が繰り返されます...なぜそうなのですか?