Borderou de evaluare (job #612425)
Utilizator |
|
IP | ascuns |
---|---|---|---|
Problemă | Balaur (clasa a 5-a) | Compilator | c-32 |
Rundă | Arhiva de probleme | Status | evaluat |
Dată | 25 oct. 2021 23:02:54 | Scor | 0 |
Raport evaluator
Eroare de compilare:
main.c: In function 'main':
main.c:8:8: error: expected ';' before 'fin'
8 | a=5
| ^
| ;
9 | fin = fopen("balaur.in", "r");
| ~~~
main.c:10:18: warning: format '%d' expects argument of type 'int *', but argument 3 has type 'long long int *' [-Wformat=]
10 | fscanf(fin,"%d",&n);
| ~^ ~~
| | |
| | long long int *
| int *
| %lld
main.c:7:17: warning: variable 'a' set but not used [-Wunused-but-set-variable]
7 | long long n,a;
| ^
main.c:10:5: warning: ignoring return value of 'fscanf' declared with attribute 'warn_unused_result' [-Wunused-result]
10 | fscanf(fin,"%d",&n);
| ^~~~~~~~~~~~~~~~~~~