#1485
Jumatate1
Se citește un număr natural n
. Acest număr se “împarte” în alte două numere x
și y
, astfel: x
este format din cifrele din prima jumătate a lui n
, y
este format din cifrele din a doua jumătate a lui n
. Dacă n
are număr impar de cifre, cifra din mijloc va fi prima cifră a lui y
. De exemplu, dacă n=88132
, atunci x=88
, iar y=132
.
Să se determine cel mai mare divizor comun al lui x
și y
.
Olimpiada locală de Informatică, Prahova, 2016
Problema | Jumatate1 | Operații I/O |
jumatate1.in /jumatate1.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53741045 | Utilizator | |
Fișier | jumatate1.cpp | Dimensiune | 1.31 KB |
Data încărcării | 10 Noiembrie 2024, 15:18 | Scor / rezultat | Eroare de compilare |
jumatate1.cpp: In function 'int main()': jumatate1.cpp:45:19: error: invalid initialization of reference of type 'int&' from expression of type 'long long int' oglindit(a); ^ jumatate1.cpp:7:6: error: in passing argument 1 of 'void oglindit(int&)' void oglindit(int &x) ^ jumatate1.cpp:46:19: error: invalid initialization of reference of type 'int&' from expression of type 'long long int' oglindit(b); ^ jumatate1.cpp:7:6: error: in passing argument 1 of 'void oglindit(int&)' void oglindit(int &x) ^ jumatate1.cpp:73:19: error: invalid initialization of reference of type 'int&' from expression of type 'long long int' oglindit(a); ^ jumatate1.cpp:7:6: error: in passing argument 1 of 'void oglindit(int&)' void oglindit(int &x) ^ jumatate1.cpp:74:19: error: invalid initialization of reference of type 'int&' from expression of type 'long long int' oglindit(b); ^ jumatate1.cpp:7:6: error: in passing argument 1 of 'void oglindit(int&)' void oglindit(int &x) ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Jumatate1 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ă.