|
|
вернуться в форумОбщий форумHELP ME,PLS...1102 Hi! When reading string from the standart input character by character, how can I stop reading it and go to the next line of the input.. I mean, when I understand the answer is "NO", I don't need to read the whole string, as the answer will be the same, I just want to go to the next line and proceed with the next string. How to do This? Thanks in advice :) Re: HELP ME,PLS...1102 while not eoln(INPUT) do begin ... ... if NO then break; ... end; if not eoln(INPUT) then readln; Re: HELP ME,PLS...1102 Thank you verry much, but I am using C++... Do you know how it will be there? |
|
|