010
08.07.2004, 08:18 Uhr
freshman
|
vielleicht nicht so schön, aber es funkt: !!caution: conio is no standard!!
C++: |
const char PW[5]={'t','e','s','t','\0'}; char pw[5]; cout<<"Bitte Password eingeben!"<<endl; for(int i=0; i<4 ;i++){ pw[i] = getch(); cout<<"*"; } pw[4]='\0'; if( strcmp(pw,PW)==0 ){ cout<<"Password ist Richtig!"<<endl<<"Login erfolgreich!"<<endl; } else{ cout<<"Password ist Falsch!"<<endl; }
|
-- freshman.say("Wer nicht an Wunder glaubt ist kein Realist!\a"); while(1)freshman.ask(sillyQuestion); |