|
|
back to boardWTF??? check that! i used: char n; while(cin.get(n)) {...} and get WA on a first test!!! but when a change it to : char n; while(cin>>n) {...} i got AC.... Why??? i think it not right.... Re: WTF??? check that! Posted by Morph 11 Mar 2012 05:35 Maybe you haven't included the <string.h> header. :) |
|
|