08-29-2022, 07:44 PM
(This post was last modified: 08-29-2022, 07:52 PM by Kernelpanic.)
(08-27-2022, 09:05 PM)TempodiBasic Wrote: @SmcNeill
I know that it is possible to use GOTO in C, but never seen before this time.
Yes, "goto" exists in C, and sometimes it can be useful too, for example to get out of a deeply nested loop. Sure, that can also be solved differently, but much more complicated - and therefore more error-prone.
Here's an example of "goto" in C, but really just an example. One can easily program it differently. Many gotos . . .
Code: (Select All)
//Goto Benutzung - 28. Aug.2022
//Prüfen der Eingabe ob Zahl
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <math.h>
int main(void)
{
int zahl, check;
double pi = 3.141592653589;
double kreisumfang, quadratflaeche;
double zylindervolumen;
wiederholen:
printf("\nBitte waehlen Sie:\n");
printf("10 = Kreisumfang\n");
printf("15 = Flaeche eine Quadrats\n");
printf("20 = Volumen eines Zylinders\n");
printf("\n0 fuer Ende: ");
check = scanf("%d", &zahl);
//Prüft ob Eingabe eine Zahl war.
//Liefert scanf eine 0 zurück, war es keine Zahl
if(check == 0)
goto keine_zahl;
if(zahl == 0)
{
goto ende;
}
else if(zahl == 10)
goto kreis_umfang;
else if(zahl == 15)
goto flaeche_quadrat;
else if(zahl == 20)
goto zylinder_volumen;
else goto wiederholen;
kreis_umfang:
kreisumfang = (double)10 * pi;
printf("\nEin Kreis mit dem Durchmesser von 10cm hat einen Umfang von %4.2f cm", kreisumfang);
exit(0);
flaeche_quadrat:
quadratflaeche = pow(15.0, 2.0);
printf("\nBei einem Quadrat von 15cm Kantenlaenge betraegt der Flaecheninhalt: %4.2f qcm\n", quadratflaeche);
exit(0);
zylinder_volumen:
zylindervolumen = (((20.0 * 20.0) * pi) * 30.0);
printf("\nZylindervolumen bei einem Radius von 20cm und einer Hoehe von 30cm betraegt: %4.2f ccm\n", zylindervolumen);
exit(0);
keine_zahl:
printf("\n\aEingabe war keine Zahl!\n");
exit(0);
ende:
printf("\a\nUnd Tschuessi!\n");
return(0);
}
Screenshot: