#4255
rotire_secvente
Se dă un vector cu n
elemente, numere naturale, și un număr k
, divizor al lui n
. Se împarte vectorul în k
secvențe disjuncte, numerotate de la 1
la k
. Să se permute circular cu o poziție spre stânga elementele din fiecare dintre cele k
secvențe și să se afișeze pe ecran vectorul rezultat în urma acestor modificări.
Problema | rotire_secvente | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53108591 | Utilizator | |
Fișier | rotire_secvente.cpp | Dimensiune | 649 B |
Data încărcării | 17 Octombrie 2024, 19:57 | Scor / rezultat | Eroare de compilare |
rotire_secvente.cpp:1:1: error: 'include' does not name a type include <iostream> ^ rotire_secvente.cpp:6:28: error: declaration of 'x' as array of references void citire(int x,int &x[50]) ^ rotire_secvente.cpp: In function 'void citire(...)': rotire_secvente.cpp:8:5: error: 'cin' was not declared in this scope cin>>n; ^ rotire_secvente.cpp: At global scope: rotire_secvente.cpp:13:30: error: conflicting declaration 'int* x' void permutare(int x,int x[50]) ^ rotire_secvente.cpp:13:20: error: 'x' has a previous declaration as 'int x' void permutare(int x,int x[50]) ^ rotire_secvente.cpp: In function 'void permutare(int)': rotire_secvente.cpp:15:9: error: 'i' was not declared in this scope for(i=1;i<=n/k;i=i+k) ^ rotire_secvente.cpp:15:16: error: 'n' was not declared in this scope for(i=1;i<=n/k;i=i+k) ^ rotire_secvente.cpp:15:18: error: 'k' was not declared in this scope for(i=1;i<=n/k;i=i+k) ^ rotire_secvente.cpp:16:19: error: redeclaration of 'int i' { int cat,k,j,i,x[50]; ^ rotire_secvente.cpp:15:9: error: '<typeprefixerror>i' previously declared here for(i=1;i<=n/k;i=i+k) ^ rotire_secvente.cpp:20:23: warning: operation on 'j' may be undefined [-Wsequence-point] {x[++j]=x[j-1]; ^ rotire_secvente.cpp:24:31: error: conflicting declaration 'int* x' int afisare(int x,int x[50]) ^ rotire_secvente.cpp:24:21: error: 'x' has a previous declaration as 'int x' int afisare(int x,int x[50]) ^ rotire_secvente.cpp:25:5: error: a function-definition is not allowed here before '{' token { int i,x[50] ^ rotire_secvente.cpp:30:5: error: a function-definition is not allowed here before '{' token { ^ rotire_secvente.cpp:34:21: error: expected '}' at end of input afisare(n,x) ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema rotire_secvente 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ă.