#3910
Aranjamente1
Se citesc trei numere naturale a b n
. Să se afișeze, în ordine lexicografică, șirurile cu n
elemente distincte din mulțimea {a, a + 1, ..., b}
.
Problema | Aranjamente1 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.5 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53664025 | Utilizator | |
Fișier | aranjamente1.cpp | Dimensiune | 660 B |
Data încărcării | 07 Noiembrie 2024, 17:35 | Scor / rezultat | Eroare de compilare |
aranjamente1.cpp: In function 'bool valid(int)': aranjamente1.cpp:9:12: error: 'x' was not declared in this scope if(x[i]==x[k]) ^ aranjamente1.cpp: In function 'void afisare()': aranjamente1.cpp:18:20: error: 'n' was not declared in this scope for(int i=1;i<=n;i++) ^ aranjamente1.cpp:19:11: error: 'x' was not declared in this scope cout<<x[i]<<' '; ^ aranjamente1.cpp: In function 'void back()': aranjamente1.cpp:25:13: error: 'x' was not declared in this scope int k=1; x[k]=a-1; ^ aranjamente1.cpp:25:18: error: 'a' was not declared in this scope int k=1; x[k]=a-1; ^ aranjamente1.cpp:27:20: error: 'b' was not declared in this scope while(x[k]<b) ^ aranjamente1.cpp:31:27: error: 'n' was not declared in this scope if(k==n) ^ aranjamente1.cpp:30:19: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(valid(k)) ^ aranjamente1.cpp: In function 'int main()': aranjamente1.cpp:41:10: error: 'a' was not declared in this scope cin>>a>>b>>n; ^ aranjamente1.cpp:41:13: error: 'b' was not declared in this scope cin>>a>>b>>n; ^ aranjamente1.cpp:41:16: error: 'n' was not declared in this scope cin>>a>>b>>n; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Aranjamente1 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ă.