You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.1 KiB
56 lines
1.1 KiB
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "raetselronja.h"
|
|
#include "userinput.h"
|
|
|
|
|
|
|
|
int zahlenraetsel(int input[], int loesung, int n) {
|
|
//gegebene zahlen printne und nach ölösungun fragen
|
|
int eingabe = 0;
|
|
|
|
for(int i = 0; i < n; i++){
|
|
printf("%d", input[i]);
|
|
if (i < n -1){
|
|
printf(",");
|
|
}
|
|
printf(" ");
|
|
}
|
|
printf("\n");
|
|
|
|
printf("Bitte geben Sie die Loesung ein.\n");
|
|
eingabe = userInput(); //hier stand mal scanf,jetzt kommt das in eine Funktion zum testen
|
|
if (eingabe == loesung){
|
|
return 1;
|
|
printf("Die Antwort ist richtig.\n");
|
|
}
|
|
else{
|
|
return 0;
|
|
printf("Die Antwort ist falsch.\n");
|
|
}
|
|
|
|
}
|
|
|
|
int raetselaufruf(){
|
|
|
|
int auswahl = 1;
|
|
int loesung = 0;
|
|
|
|
switch (auswahl) {
|
|
case 1:
|
|
int input[] = {25, 50, 54, 49, 98, 102, 97, 194};
|
|
int n = 8;
|
|
loesung = 198;
|
|
zahlenraetsel(input, loesung, n);
|
|
break;
|
|
default: return -1;
|
|
}
|
|
|
|
return auswahl;
|
|
}
|
|
|
|
|
|
//Zahlenrätsel : 25,50,54,49,98,102,97,194
|
|
//256,289,324,361,
|