#2694
MinMax2
Se dau 2
numere naturale cu exact 3
cifre fiecare, să se afișeze cel mai mare numar și cel mai mic numar scris cu o cifră din primul număr și cu o cifră din al doilea.
Problema | MinMax2 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53565827 | Utilizator | |
Fișier | minmax2.cpp | Dimensiune | 660 B |
Data încărcării | 05 Noiembrie 2024, 11:56 | Scor / rezultat | Eroare de compilare |
minmax2.cpp: In function 'int main()': minmax2.cpp:7:5: error: 'max1' was not declared in this scope max1=max(x%10;x/10%10); ^ minmax2.cpp:7:18: error: expected ')' before ';' token max1=max(x%10;x/10%10); ^ minmax2.cpp:7:26: error: expected ';' before ')' token max1=max(x%10;x/10%10); ^ minmax2.cpp:7:23: warning: statement has no effect [-Wunused-value] max1=max(x%10;x/10%10); ^ minmax2.cpp:8:5: error: 'max2' was not declared in this scope max2=max(max1x/100); ^ minmax2.cpp:8:14: error: 'max1x' was not declared in this scope max2=max(max1x/100); ^ minmax2.cpp:9:5: error: 'max3' was not declared in this scope max3=max(y%10,y/10%10); ^ minmax2.cpp:10:5: error: 'max4' was not declared in this scope max4=max(max3,y/100); ^ minmax2.cpp:15:5: error: 'min1' was not declared in this scope min1=min(x%10;x/10%10); ^ minmax2.cpp:15:18: error: expected ')' before ';' token min1=min(x%10;x/10%10); ^ minmax2.cpp:15:26: error: expected ';' before ')' token min1=min(x%10;x/10%10); ^ minmax2.cpp:15:23: warning: statement has no effect [-Wunused-value] min1=min(x%10;x/10%10); ^ minmax2.cpp:16:5: error: 'min2' was not declared in this scope min2=min(min1;x/100); ^ minmax2.cpp:16:18: error: expected ')' before ';' token min2=min(min1;x/100); ^ minmax2.cpp:16:24: error: expected ';' before ')' token min2=min(min1;x/100); ^ minmax2.cpp:16:20: warning: statement has no effect [-Wunused-value] min2=min(min1;x/100); ^ minmax2.cpp:17:5: error: 'min3' was not declared in this scope min3=min(y%10,y/10%10); ^ minmax2.cpp:18:5: error: 'min4' was not declared in this scope min4=min(max3,y/100); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema MinMax2 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ă.