From 27561b4437005ede9dd8432f16277a99e05c3a3b Mon Sep 17 00:00:00 2001 From: Kevin Ludwig Date: Thu, 8 Feb 2024 19:45:04 +0100 Subject: [PATCH] =?UTF-8?q?refactoring:=20bessere=20variablennamen=20und?= =?UTF-8?q?=20abst=C3=A4nde=20f=C3=BCr=20bessere=20lesbarkeit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/passwortgenerator.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/passwortgenerator.c b/src/passwortgenerator.c index b1c5f8e..1ed589c 100644 --- a/src/passwortgenerator.c +++ b/src/passwortgenerator.c @@ -7,24 +7,24 @@ int run_passwortGenerator(){ printf("\nPasswort Generator\n\n"); char zeichen[] = "abcdefghijklmnopqrstuvwxyz0123456789!%&/()=?*#'+-_.:,;<>"; while(1){ - int eing = 0; + int eingabe = 0; printf("\nTippen Sie die gewuenschte Passwortlaenge ein, um ein neues zu generieren\noder '0' um das Programm zu beenden: "); - scanf("%d", &eing); + scanf("%d", &eingabe); int tmp = 0; - int GroSSklein = 0; - if(eing == 0){ + int grossKlein = 0; + if(eingabe == 0){ return 0; } - else if(eing < 0){ + else if(eingabe < 0){ printf("\nNegative Zahlen sind nicht erlaubt!"); } printf("\nIhr Passwort: "); srand(time(0)); - for(int i = 0; i < eing; i++) + for(int i = 0; i < eingabe; i++) { tmp = rand()%56; - GroSSklein = rand()%2; - printf("%c", (tmp<26?(GroSSklein==0?toupper(zeichen[tmp]):zeichen[tmp]):zeichen[tmp])); + grossKlein = rand()%2; + printf("%c", (tmp < 26 ? (grossKlein == 0 ? toupper(zeichen[tmp]) : zeichen[tmp]) : zeichen[tmp])); } printf("\n"); }