jak zapisac cos takiego w c++
Repeat
c:=Readkey;
Until c in [#27,#65,#13];
10x [glowa]
jak zapisac cos takiego w c++
Repeat
c:=Readkey;
Until c in [#27,#65,#13];
10x [glowa]
#include <conio.h>
void main()
{int c;
do c=getche();
while (c!=27 && c!=65 && c!=13);
}