Browse Source

refactoring: einrückungen und einheitliche klammersetzung für bessere lesbarkeit

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

11
src/passwortgenerator.c

@ -12,8 +12,12 @@ int run_passwortGenerator(){
scanf("%d", &eing); scanf("%d", &eing);
int tmp = 0; int tmp = 0;
int GroSSklein = 0; int GroSSklein = 0;
if(eing == 0){return 0;}
else if(eing < 0){printf("\nNegative Zahlen sind nicht erlaubt!");}
if(eing == 0){
return 0;
}
else if(eing < 0){
printf("\nNegative Zahlen sind nicht erlaubt!");
}
printf("\nIhr Passwort: "); printf("\nIhr Passwort: ");
srand(time(0)); srand(time(0));
for(int i = 0; i < eing; i++) for(int i = 0; i < eing; i++)
@ -22,6 +26,7 @@ int run_passwortGenerator(){
GroSSklein = rand()%2; GroSSklein = rand()%2;
printf("%c", (tmp<26?(GroSSklein==0?toupper(zeichen[tmp]):zeichen[tmp]):zeichen[tmp])); printf("%c", (tmp<26?(GroSSklein==0?toupper(zeichen[tmp]):zeichen[tmp]):zeichen[tmp]));
} }
printf("\n");}
printf("\n");
}
return 0; return 0;
} }
Loading…
Cancel
Save