#4518
HarapAlb2
Găsind calul potrivit, Harap Alb pregătește hainele și armele lui taică-său și pleacă la drum. Ajuns la podul cu ghinion, îi iese în cale împăratul ascuns sub o blană de urs și îi spune: “Crăișorule, mi-a dat TikTok-u’ niște numere și vrea să le rotunjesc. Băiatul de pe Tiktok spune să le rotunjesc la zeci sau la sute, cum o fi aia… Te rog, ajută-mă, și îți dau 100 de like-uri/puncte!”.
Harap Alb nu înțelege nimic, dar calul intervine strategic și reformulează imediat problema, astfel:
Scrieți un program care citește de la tastatură două numere naturale N r
(unde r
poate fi doar 1
sau 2
) și afișează pe ecran valoarea lui N
, rotunjită la zeci, dacă r = 1
, sau rotunjită la sute, dacă r = 2
.
Problema | HarapAlb2 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54287683 | Utilizator | |
Fișier | harapalb2.cpp | Dimensiune | 388 B |
Data încărcării | 24 Noiembrie 2024, 20:52 | Scor / rezultat | Eroare de compilare |
harapalb2.cpp: In function 'int main()': harapalb2.cpp:9:16: error: no match for 'operator=' (operand types are 'std::basic_ostream<char>' and 'int') cout<<N=N-(N%10); ^ harapalb2.cpp:9:16: note: candidate is: In file included from /usr/include/c++/4.8/iostream:39:0, from harapalb2.cpp:1: /usr/include/c++/4.8/ostream:58:11: note: std::basic_ostream<char>& std::basic_ostream<char>::operator=(const std::basic_ostream<char>&) <deleted> class basic_ostream : virtual public basic_ios<_CharT, _Traits> ^ /usr/include/c++/4.8/ostream:58:11: note: no known conversion for argument 1 from 'int' to 'const std::basic_ostream<char>&' harapalb2.cpp:11:13: error: no match for 'operator=' (operand types are 'std::basic_ostream<char>' and 'int') cout<<N=N+(10-N%10); ^ harapalb2.cpp:11:13: note: candidate is: In file included from /usr/include/c++/4.8/iostream:39:0, from harapalb2.cpp:1: /usr/include/c++/4.8/ostream:58:11: note: std::basic_ostream<char>& std::basic_ostream<char>::operator=(const std::basic_ostream<char>&) <deleted> class basic_ostream : virtual public basic_ios<_CharT, _Traits> ^ /usr/include/c++/4.8/ostream:58:11: note: no known conversion for argument 1 from 'int' to 'const std::basic_ostream<char>&' harapalb2.cpp:16:19: error: no match for 'operator=' (operand types are 'std::basic_ostream<char>' and 'int') cout<<N=N-(N%100); ^ harapalb2.cpp:16:19: note: candidate is: In file included from /usr/include/c++/4.8/iostream:39:0, from harapalb2.cpp:1: /usr/include/c++/4.8/ostream:58:11: note: std::basic_ostream<char>& std::basic_ostream<char>::operator=(const std::basic_ostream<char>&) <deleted> class basic_ostream : virtual public basic_ios<_CharT, _Traits> ^ /usr/include/c++/4.8/ostream:58:11: note: no known conversion for argument 1 from 'int' to 'const std::basic_ostream<char>&' harapalb2.cpp:18:20: error: no match for 'operator=' (operand types are 'std::basic_ostream<char>' and 'int') cout<<N=N+(100-N%100); ^ harapalb2.cpp:18:20: note: candidate is: In file included from /usr/include/c++/4.8/iostream:39:0, from harapalb2.cpp:1: /usr/include/c++/4.8/ostream:58:11: note: std::basic_ostream<char>& std::basic_ostream<char>::operator=(const std::basic_ostream<char>&) <deleted> class basic_ostream : virtual public basic_ios<_CharT, _Traits> ^ /usr/include/c++/4.8/ostream:58:11: note: no known conversion for argument 1 from 'int' to 'const std::basic_ostream<char>&'
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema HarapAlb2 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ă.