Aufgabe 1 abgeschlossen

This commit is contained in:
Didnt Read Readme 2022-03-16 16:05:24 +01:00
parent 826ed82258
commit 5514c48754
4 changed files with 10 additions and 5 deletions

View File

@ -31,7 +31,7 @@ int main(void)
// begin students to add code for task 4.1 // begin students to add code for task 4.1
while (1) { while (1) {
printf("\nDreiecksbestimmung (CTRL-C: Abbruch)\n"); printf("\nDreiecksbestimmung (CTRL-C: Abbruch)\n\n");
int word = 0; int word = 0;
int a = 0; int a = 0;
@ -69,12 +69,12 @@ int main(void)
break; break;
if (Rectangular(a, b, c) == 1) if (Rectangular(a, b, c) == 1)
printf("-> Dreieck %d-%d-%d ist rechtwinklig", a, b, c); printf("-> Dreieck %d-%d-%d ist rechtwinklig\n", a, b, c);
else else
printf("-> Dreieck %d-%d-%d ist nicht rechtwinklig", a, b, c); printf("-> Dreieck %d-%d-%d ist nicht rechtwinklig\n", a, b, c);
printf("\n"); printf("\n\n");
} }
printf("\n\nbye bye\n"); printf("\n\nbye bye\n\n");
// end students to add code // end students to add code
return EXIT_SUCCESS; return EXIT_SUCCESS;

View File

@ -1,8 +1,13 @@
Dreiecksbestimmung (CTRL-C: Abbruch) Dreiecksbestimmung (CTRL-C: Abbruch)
Seite a: Seite a: Seite a: Seite a: Seite a: Seite b: Seite b: Seite b: Seite b: Seite b: Seite c: Seite c: -> Dreieck 3-4-5 ist rechtwinklig Seite a: Seite a: Seite a: Seite a: Seite a: Seite b: Seite b: Seite b: Seite b: Seite b: Seite c: Seite c: -> Dreieck 3-4-5 ist rechtwinklig
Dreiecksbestimmung (CTRL-C: Abbruch) Dreiecksbestimmung (CTRL-C: Abbruch)
Seite a: Seite a:
bye bye bye bye