#494
Constr1
Se dă un vector x
cu n
elemente, numere naturale. Să se construiască un alt vector, y
, cu n
elemente, cu proprietatea că y[i]
este egal cu suma elementelor din x
, cu excepția lui x[i]
.
Problema | Constr1 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54291572 | Utilizator | |
Fișier | constr1.cpp | Dimensiune | 279 B |
Data încărcării | 25 Noiembrie 2024, 01:07 | Scor / rezultat | Eroare de compilare |
constr1.cpp: In function 'int main()': constr1.cpp:8:15: warning: right operand of comma operator has no effect [-Wunused-value] for(i=1, i<=n, i++) ^ constr1.cpp:8:23: error: expected ';' before ')' token for(i=1, i<=n, i++) ^ constr1.cpp:12:1: error: expected primary-expression before 'for' for(i=1, i<=n, i++) ^ constr1.cpp:12:1: error: expected ';' before 'for' constr1.cpp:12:1: error: expected primary-expression before 'for' constr1.cpp:12:1: error: expected ')' before 'for' constr1.cpp:12:11: warning: right operand of comma operator has no effect [-Wunused-value] for(i=1, i<=n, i++) ^ constr1.cpp:12:19: error: expected ';' before ')' token for(i=1, i<=n, i++) ^ constr1.cpp:14:1: error: expected primary-expression before 'for' for(i=i, i<=n, i++) ^ constr1.cpp:14:1: error: expected ';' before 'for' constr1.cpp:14:1: error: expected primary-expression before 'for' constr1.cpp:14:1: error: expected ')' before 'for' constr1.cpp:14:11: warning: right operand of comma operator has no effect [-Wunused-value] for(i=i, i<=n, i++) ^ constr1.cpp:14:19: error: expected ';' before ')' token for(i=i, i<=n, i++) ^ constr1.cpp:17:1: error: expected primary-expression before 'return' return 0; ^ constr1.cpp:17:1: error: expected ';' before 'return' constr1.cpp:17:1: error: expected primary-expression before 'return' constr1.cpp:17:1: error: expected ')' before 'return' constr1.cpp:5:5: warning: unused variable 'a' [-Wunused-variable] int a, s, i, x[201], y[201], n; ^ constr1.cpp:5:14: warning: unused variable 'x' [-Wunused-variable] int a, s, i, x[201], y[201], n; ^ constr1.cpp:5:22: warning: unused variable 'y' [-Wunused-variable] int a, s, i, x[201], y[201], n; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Constr1 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ă.