minor changes

bugfixMaster
Jürgen Büchel 2024-12-14 22:26:40 +01:00
parent b792eed3d2
commit bf14307a71
1 changed files with 6 additions and 19 deletions

View File

@ -34,7 +34,6 @@ int main(void)
list = llistAppend(list, task); // Rückgabewert verwenden list = llistAppend(list, task); // Rückgabewert verwenden
} }
int choice = 0, i = 0; int choice = 0, i = 0;
do do
{ {
@ -48,12 +47,9 @@ int main(void)
printf("Falsche Eingabe\n");}; printf("Falsche Eingabe\n");};
choice = 0; choice = 0;
while(( choice < 1 || choice > 5)) while(( choice < 1 || choice > 5)){
{ switch (choice){
switch (choice) case 1:{
{
case 1:
{
printf(" Geben sie das gewünschte Fach ein: \n"); printf(" Geben sie das gewünschte Fach ein: \n");
if (scanf("%255s", taskname) != 1) { if (scanf("%255s", taskname) != 1) {
printf("Ungültige Eingabe für den Namen.\n"); printf("Ungültige Eingabe für den Namen.\n");
@ -86,12 +82,10 @@ int main(void)
scanf("%c", &taskspare); scanf("%c", &taskspare);
break; break;
case 3: if( task == NULL) case 3: if( task == NULL){
{
printf("Die Liste ist leer"); printf("Die Liste ist leer");
} }
else else{
{
llist *iterator = list; llist *iterator = list;
while (iterator != NULL) { while (iterator != NULL) {
Task *currentTask = (Task *)(iterator->data); // Cast zu Task Task *currentTask = (Task *)(iterator->data); // Cast zu Task
@ -100,19 +94,12 @@ int main(void)
iterator = iterator->next; // Gehe zum nächsten Listenelement iterator = iterator->next; // Gehe zum nächsten Listenelement
} }
} }
break; break;
// case 4: iCAl();break; // case 4: iCAl();break;
} }
} }
} }
}while (choice !=5); { }while (choice !=5); {
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }
} }