- Joined
- Jul 11, 2020
- Messages
- 0
- Reaction score
- 26
- Points
- 0
Hier der Code
➡ Edit by FantaCoke: Added Code-Tags / 17.01.2018 - 08:58
Code:
#include <stdio.h>
#include <stdlib.h>
#include "bse_console.h"
int main()
{
textbackground(BLUE);
getch(); // Programm wartet auf Taste
clrscr(); // Bildschirm löschen
textcolor(GREEN);
printf("Willkommen bei meinem Mathematik Quiz!");
getch();
clrscr();
textcolor(LIGHTGREEN);
printf("56 + 34 = ");
getchar();
textcolor(LIGHTRED);
printf("Die Richtige Antwort lautet: 90");
getch();
clrscr();
textcolor(LIGHTGREEN);
printf("32 - 12 = "); Ab hier geht es nicht mehr es lässt mich nichts in der Console eingeben
getchar(); sondern zeigt einfach gleich denn nächsten Text an.
textcolor(LIGHTRED);
printf("Die Richtige Antwort lautet: 20");
return 0;
}
➡ Edit by FantaCoke: Added Code-Tags / 17.01.2018 - 08:58
Last edited by a moderator: