#450
minicalc
Se citesc de la tastatură 3
numere naturale, a
, b
, c
. Să se realizeze cu a
și b
operația codificată prin numărul c
.
Problema | minicalc | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54265247 | Utilizator | |
Fișier | minicalc.cpp | Dimensiune | 239 B |
Data încărcării | 24 Noiembrie 2024, 01:58 | Scor / rezultat | Eroare de compilare |
minicalc.cpp: In function 'int main()': minicalc.cpp:5:27: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'double*' [-Wformat=] scanf("%d %d %d",&a,&b,&c); ^ minicalc.cpp:5:27: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'double*' [-Wformat=] minicalc.cpp:5:27: warning: format '%d' expects argument of type 'int*', but argument 4 has type 'double*' [-Wformat=] minicalc.cpp:6:26: warning: format '%d' expects argument of type 'int', but argument 2 has type 'double' [-Wformat=] if(c==1) printf("%d",a+b); ^ minicalc.cpp:7:26: warning: format '%d' expects argument of type 'int', but argument 2 has type 'double' [-Wformat=] if(c==2) printf("%d",a-b); ^ minicalc.cpp:8:26: warning: format '%d' expects argument of type 'int', but argument 2 has type 'double' [-Wformat=] if(c==3) printf("%d",a*b); ^ minicalc.cpp:10:25: error: invalid operands of types 'double' and 'double' to binary 'operator%' if(c==5) printf("%d",a%b); ^ minicalc.cpp:5:28: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d %d %d",&a,&b,&c); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema minicalc face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.