Ejemplo n.º 1
0
void Menue::start() {
	int auswahl;
	cout << "!!!!    4 GEWINNT    !!!!\n";
	do{
		cout << menue();
		cin >> auswahl;
		menueauswahl(auswahl);
	}while (auswahl != 0);
}
Ejemplo n.º 2
0
int main(void) {
	/* Hiermit wird der Buffer der Konsole auf 0 gesetzt */
	/* (damit Eclipse die Ausgabe in der Konsole in der */
	/* richtigen Reihenfolge anzeigt, muss dies am Anfang */
	/* der main ausgefuehrt werden) */
	// setvbuf(stdout, NULL, _IONBF, 0);

	return menue();
}
Ejemplo n.º 3
0
void main()
{
int k=1;
clrscr();
textcolor(2);
textbackground(0);
while (k!=0)
 k=menue();



}
Ejemplo n.º 4
0
Archivo: main.c Proyecto: Bst666/MyUsb
int main (void)
{
    //-- initialize the LPC-Stick, enable UART0, UART2 and CAN
    //--
    BaseStickConfig();

    printf("Hallo TI_Labor\n");

#ifdef LCD_SUPPORT
    LCD_puts ( "Hallo TI_Labor" );
#endif

    //-- your code goes here
    //--

    while (1)
    {
        menue();
    }
}