#926
FSumDiv3Rec
C++
Scrieți definiția completă unui subprogram C++ recursiv care returnează suma elementelor divizibile cu 3 ale unui tablou unidimensional transmis ca parametru.
Problema | FSumDiv3Rec | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53025061 | Utilizator | |
Fișier | fsumdiv3rec.cpp | Dimensiune | 213 B |
Data încărcării | 15 Octombrie 2024, 20:06 | Scor / rezultat | Eroare de compilare |
fsumdiv3rec.cpp: In function 'int sum3(int*, int)': fsumdiv3rec.cpp:6:11: warning: suggest parentheses around assignment used as truth value [-Wparentheses] if(v=0) ^ fsumdiv3rec.cpp:8:10: error: ISO C++ forbids comparison between pointer and integer [-fpermissive] if(v<10 && v%3==0) ^ fsumdiv3rec.cpp:8:18: error: invalid operands of types 'int*' and 'int' to binary 'operator%' if(v<10 && v%3==0) ^ fsumdiv3rec.cpp:10:15: error: invalid operands of types 'int*' and 'int' to binary 'operator%' cif=v%3; ^ fsumdiv3rec.cpp:13:10: error: invalid operands of types 'int*' and 'int' to binary 'operator%' if(v%10==cif) ^ fsumdiv3rec.cpp:15:15: error: invalid operands of types 'int*' and 'int' to binary 'operator%' cif=v%3; ^ fsumdiv3rec.cpp:16:14: error: invalid operands of types 'int*' and 'int' to binary 'operator/' return v/10 ^ fsumdiv3rec.cpp:17:5: error: expected ';' before '}' token } ^ fsumdiv3rec.cpp:19:11: error: a function-definition is not allowed here before '{' token int main(){ ^ fsumdiv3rec.cpp:26:1: error: expected '}' at end of input } ^ fsumdiv3rec.cpp:26:1: warning: control reaches end of non-void function [-Wreturn-type] } ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema FSumDiv3Rec 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ă.