#4260
NrXDivImp
C++
Folosind metoda Divide et Impera, scrieți funcția recursivă cu antetul
int NrXDivImp(int a[], int st, int dr, int x)
care primind ca parametri un vector a
de numere întregi și trei numere întregi st
, dr
și x
, returnează numărul de apariții ale numărului x
în vectorul secvența a[st], a[st+1], ..., a[dr]
.
Problema | NrXDivImp | Operații I/O |
nrxdivimp.in /nrxdivimp.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #52700605 | Utilizator | |
Fișier | nrxdivimp.cpp | Dimensiune | 380 B |
Data încărcării | 07 Octombrie 2024, 14:17 | Scor / rezultat | Eroare de compilare |
nrxdivimp.cpp: In function 'int main()': nrxdivimp.cpp:22:12: warning: left operand of comma operator has no effect [-Wunused-value] int a[]=(2,5,1,5,3,5,5,5,7,6),st=1,dr=6,x=5; ^ nrxdivimp.cpp:22:14: warning: right operand of comma operator has no effect [-Wunused-value] int a[]=(2,5,1,5,3,5,5,5,7,6),st=1,dr=6,x=5; ^ nrxdivimp.cpp:22:16: warning: right operand of comma operator has no effect [-Wunused-value] int a[]=(2,5,1,5,3,5,5,5,7,6),st=1,dr=6,x=5; ^ nrxdivimp.cpp:22:18: warning: right operand of comma operator has no effect [-Wunused-value] int a[]=(2,5,1,5,3,5,5,5,7,6),st=1,dr=6,x=5; ^ nrxdivimp.cpp:22:20: warning: right operand of comma operator has no effect [-Wunused-value] int a[]=(2,5,1,5,3,5,5,5,7,6),st=1,dr=6,x=5; ^ nrxdivimp.cpp:22:22: warning: right operand of comma operator has no effect [-Wunused-value] int a[]=(2,5,1,5,3,5,5,5,7,6),st=1,dr=6,x=5; ^ nrxdivimp.cpp:22:24: warning: right operand of comma operator has no effect [-Wunused-value] int a[]=(2,5,1,5,3,5,5,5,7,6),st=1,dr=6,x=5; ^ nrxdivimp.cpp:22:26: warning: right operand of comma operator has no effect [-Wunused-value] int a[]=(2,5,1,5,3,5,5,5,7,6),st=1,dr=6,x=5; ^ nrxdivimp.cpp:22:28: warning: right operand of comma operator has no effect [-Wunused-value] int a[]=(2,5,1,5,3,5,5,5,7,6),st=1,dr=6,x=5; ^ nrxdivimp.cpp:22:29: error: initializer fails to determine size of 'a' int a[]=(2,5,1,5,3,5,5,5,7,6),st=1,dr=6,x=5; ^ nrxdivimp.cpp:22:29: error: array must be initialized with a brace-enclosed initializer nrxdivimp.cpp: In function 'int main()': nrxdivimp.cpp:29:5: error: redefinition of 'int main()' int main() ^ nrxdivimp.cpp:20:5: error: 'int main()' previously defined here int main() ^ nrxdivimp.cpp:37:35: error: 'NrXDivImp' was not declared in this scope fout << NrXDivImp(a, st, dr, x) << "\n"; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema NrXDivImp 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ă.