-
Notifications
You must be signed in to change notification settings - Fork 0
/
vocab2.c
36 lines (34 loc) · 975 Bytes
/
vocab2.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
int main (int argc, char *argv[]) {
int z;
char s[200];
char deutsch[1000][100];
char englisch[1000][100];
int x=0,y=0,c,flag=0;
FILE *fp;
fp=fopen(argv[1],"r");
if (fp==NULL) {printf ("Die Datei konnte nicht geoeffnet werden."); return 1;};
B: c=fgetc (fp);
if (c==EOF) {goto C;}
else if (c=='=') {c=fgetc (fp); flag=1; deutsch[x][y]=0; y=0; }
else if (c=='\n') {c=fgetc (fp); flag=0; englisch[x][y]=0; y=0; x++;}
else if (c=='#') {flag=-1;}
if (flag==1) {englisch[x][y]=c;}
else if (flag==0) {deutsch[x][y]=c;}
else if (flag==-1) {c=fgetc (fp);}
y++;
goto B;
C: fclose(fp);
srand(time(0));
A: z=rand()%x;
printf("%s\n",deutsch [z]);
scanf ("%s",s);
if (strcmp (s,"stop")==0) goto Exit;
if (strstr (englisch [z],s)!=NULL) printf ("Wunderbar, das war richtig!\n");
else printf ("Das war leider falsch!\n");
goto A;
Exit: printf ("Vielen Dank fuers Vokabeln lernen!");
}