#202
PermPF
Se citeşte un număr natural nenul n
. Să se afişeze, în ordine lexicografică, permutările fără puncte fixe ale mulţimii {1,2,..,n}
.
Problema | PermPF | Operații I/O |
permpf.in /permpf.out
|
---|---|---|---|
Limita timp | 0.5 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #45229561 | Utilizator | |
Fișier | permpf.cpp | Dimensiune | 515 B |
Data încărcării | 06 Octombrie 2023, 16:28 | Scor / rezultat | Eroare de compilare |
permpf.cpp:7:1: error: expected ',' or ';' before 'ofstream' ofstream out("permf.out") ^ permpf.cpp: In function 'void afisare()': permpf.cpp:13:21: error: 'n' was not declared in this scope for(int i=1; i<=n; i++) ^ permpf.cpp:14:9: error: 'out' was not declared in this scope out<<x[i]<<" "; ^ permpf.cpp:14:14: error: 'x' was not declared in this scope out<<x[i]<<" "; ^ permpf.cpp:15:5: error: 'out' was not declared in this scope out<<endl; ^ permpf.cpp: In function 'int valid(int)': permpf.cpp:21:8: error: 'x' was not declared in this scope if(x[k]==k) return 0; ^ permpf.cpp:23:12: error: 'x' was not declared in this scope if(x[i]==x[k]) return 0; ^ permpf.cpp: In function 'void back(int)': permpf.cpp:30:9: error: 'x' was not declared in this scope x[k]=i; ^ permpf.cpp:32:19: error: 'n' was not declared in this scope if(k==n) afisare(); ^ permpf.cpp:31:11: warning: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] if(valid(k)) ^ permpf.cpp: In function 'int valid(int)': permpf.cpp:24:1: warning: control reaches end of non-void function [-Wreturn-type] } ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema PermPF 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ă.