#4699
moderat
C++
Subprogramul moderat
are un singur parametru, n
, prin care primește un număr natural (n ∈ [1, 1.000.000.000]
). Subprogramul returnează valoarea 1
dacă n
este un număr moderat, sau valoarea 0
în caz contrar. Scrieți definiția completă a subprogramului.
Bac 2024, sesiunea august
Problema | moderat | Operații I/O |
moderat.in /moderat.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 2 MB
/
Stivă 1 MB
|
Id soluție | #52835126 | Utilizator | |
Fișier | moderat.cpp | Dimensiune | 530 B |
Data încărcării | 10 Octombrie 2024, 13:50 | Scor / rezultat | Eroare de compilare |
moderat.cpp: In function 'bool prim(int)': moderat.cpp:9:11: error: 'i' was not declared in this scope if(n==i | |(n>2 &&n%2==0)) retun 0; ^ moderat.cpp:9:16: error: expected primary-expression before '|' token if(n==i | |(n>2 &&n%2==0)) retun 0; ^ moderat.cpp:9:33: error: 'retun' was not declared in this scope if(n==i | |(n>2 &&n%2==0)) retun 0; ^ moderat.cpp:9:39: error: expected ';' before numeric constant if(n==i | |(n>2 &&n%2==0)) retun 0; ^ moderat.cpp:12:9: error: 'rturn' was not declared in this scope rturn 0; ^ moderat.cpp:12:15: error: expected ';' before numeric constant rturn 0; ^ moderat.cpp:13:9: error: 'retun' was not declared in this scope retun 1; ^ moderat.cpp:13:15: error: expected ';' before numeric constant retun 1; ^ moderat.cpp:14:1: warning: no return statement in function returning non-void [-Wreturn-type] } ^ moderat.cpp: In function 'bool moderat(int)': moderat.cpp:17:22: error: found ':' in nested-name-specifier, expected '::' for(int d=2;d*d<n:d++){ ^ moderat.cpp:17:21: error: 'n' is not a class, namespace, or enumeration for(int d=2;d*d<n:d++){ ^ moderat.cpp:17:26: error: expected ';' before ')' token for(int d=2;d*d<n:d++){ ^ moderat.cpp:27:5: error: 'retur' was not declared in this scope retur 0; ^ moderat.cpp:27:11: error: expected ';' before numeric constant retur 0; ^ moderat.cpp: In function 'int main()': moderat.cpp:36:26: error: 'Moderat' was not declared in this scope fout << Moderat(n); ^ moderat.cpp: In function 'bool moderat(int)': moderat.cpp:28:1: warning: control reaches end of non-void function [-Wreturn-type] } ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema moderat face parte din a doua categorie. Pentru aceste probleme se folosește un program suport, furnizat de propunătorul problemei. 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ă.