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