#245
NrDivMax
Se dă un număr natural n
. Să se determine numărul din intervalul [1,n]
care are număr maxim de divizori.
Problema | NrDivMax | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.3 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #38105194 | Utilizator | |
Fișier | nrdivmax.cpp | Dimensiune | 444 B |
Data încărcării | 29 Septembrie 2022, 19:13 | Scor / rezultat | Eroare de compilare |
nrdivmax.cpp:2:7: error: expected nested-name-specifier before 'namesapce' using namesapce std; ^ nrdivmax.cpp:2:7: error: 'namesapce' has not been declared nrdivmax.cpp:2:17: error: expected ';' before 'std' using namesapce std; ^ nrdivmax.cpp:2:17: error: 'std' does not name a type nrdivmax.cpp: In function 'void nr_div(int)': nrdivmax.cpp:14:12: error: return-statement with a value, in function returning 'void' [-fpermissive] return nr; ^ nrdivmax.cpp: In function 'void maxdiv(int)': nrdivmax.cpp:19:30: error: invalid operands of types 'void' and 'void' to binary 'operator>' if(nr_div(i)>nr_div(m)) m=i; ^ nrdivmax.cpp:21:12: error: return-statement with a value, in function returning 'void' [-fpermissive] return m; ^ nrdivmax.cpp: In function 'int main()': nrdivmax.cpp:25:5: error: 'cin' was not declared in this scope cin>>n; ^ nrdivmax.cpp:25:5: note: suggested alternative: In file included from nrdivmax.cpp:1:0: /usr/include/c++/4.8/iostream:60:18: note: 'std::cin' extern istream cin; /// Linked to standard input ^ nrdivmax.cpp:26:5: error: 'cout' was not declared in this scope cout<<maxdiv(n); ^ nrdivmax.cpp:26:5: note: suggested alternative: In file included from nrdivmax.cpp:1:0: /usr/include/c++/4.8/iostream:61:18: note: 'std::cout' extern ostream cout; /// Linked to standard output ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema NrDivMax 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ă.