1到3处代码的意思不清楚
1到3处的代码在程序中是什么意思啊,谁能帮我解释下int main()
{
using namespace std;
char input[Arsize];
char next;
cout<<"enter a line: \n";
cin.get(input,Arsize);
while(cin)
{
cin.get(next); 1
while(next!='\n') 2
cin.get(next); 3
strcount(input);
cout<<"enter next line(empty line to quit): \n";
cin.get(input,Arsize);
}
cout<<"Bye\n";
return 0;
}