for Schleife

Wie wäre es mal mit
Code:
char Eingabe;
do {
	// dein Counter..
	
	printf("Noch mal? (j/n) ");
	scanf("%c", &Eingabe);
} while(tolower(Eingabe) == 'j')
 
Zurück