Browse Source

Passwortgenerator Programm beenden

remotes/origin/tictactoedev
Kevin Ludwig 11 months ago
parent
commit
c6f9e86d35
  1. 8
      src/passwortgenerator.c

8
src/passwortgenerator.c

@ -8,12 +8,11 @@ int run_passwortGenerator(){
char zeichen[] = "abcdefghijklmnopqrstuvwxyz0123456789!%&/()=?*#";
while(1){
int eing = 0;
printf("Tippen Sie '1' ein, um ein neues Passwort zu generieren: ");
printf("Tippen Sie '1' ein, um ein neues Passwort zu generieren\noder '0' um das Programm zu beenden: ");
scanf("%d", &eing);
int tmp = 0;
int GroSSklein = 0;
if(eing == 1)
{
if(eing == 0){return 0;}
printf("\nIhr Passwort: ");
srand(time(0));
for(int i = 0; i < 10; i++)
@ -23,8 +22,5 @@ int run_passwortGenerator(){
printf("%c", (tmp<26?(GroSSklein==0?toupper(zeichen[tmp]):zeichen[tmp]):zeichen[tmp]));
}
printf("\n");}
else
return 0;
}
return 0;
}
Loading…
Cancel
Save