#2825
Chenar2
Scrieți un program C/C++ care citește de la tastatură numere naturale din intervalul [3, 100]
, în această ordine: n
și m
, apoi elementele unui tablou bidimensional cu n
linii și m
coloane, iar la final un număr x
.
Programul afișează pe ecran mesajul DA
, dacă există cel puțin un element egal cu x
aflat pe conturul tabloului (format din prima linie, ultima linie, prima coloană și ultima coloană), sau mesajul NU
în caz contrar.
Subiect Bacalaureat 2016, sesiunea august-septembrie
Problema | Chenar2 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53987528 | Utilizator | |
Fișier | chenar2.cpp | Dimensiune | 396 B |
Data încărcării | 16 Noiembrie 2024, 21:26 | Scor / rezultat | Eroare de compilare |
chenar2.cpp:3:18: error: array bound is not an integer constant before ']' token int n,m,i,j,x,a[i][j]; ^ chenar2.cpp:3:21: error: array bound is not an integer constant before ']' token int n,m,i,j,x,a[i][j]; ^ chenar2.cpp: In function 'int main()': chenar2.cpp:8:11: error: 'a' was not declared in this scope cin>>a[i][j]; ^ chenar2.cpp:11:12: error: 'a' was not declared in this scope cout<<a[i][j]; ^ chenar2.cpp:12:15: warning: right operand of comma operator has no effect [-Wunused-value] i=1;j=1,n; ^ chenar2.cpp:13:11: error: expected ';' before ')' token for(j=1,n) ^ chenar2.cpp:14:15: warning: right operand of comma operator has no effect [-Wunused-value] cout<<aij; ^ chenar2.cpp:15:8: warning: suggest parentheses around assignment used as truth value [-Wparentheses] j=n;i=2,m; ^ chenar2.cpp:15:14: warning: right operand of comma operator has no effect [-Wunused-value] j=n;i=2,m; ^ chenar2.cpp:15:15: error: expected ')' before ';' token j=n;i=2,m; ^ chenar2.cpp:16:11: error: expected ';' before ')' token for(i=2,m) ^ chenar2.cpp:17:16: warning: right operand of comma operator has no effect [-Wunused-value] cout<<aij ; ^ chenar2.cpp:18:1: error: expected primary-expression before 'for' for(j=n-1,1) ^ chenar2.cpp:18:1: error: expected ';' before 'for' chenar2.cpp:18:1: error: expected primary-expression before 'for' chenar2.cpp:18:1: error: expected ')' before 'for' chenar2.cpp:18:12: error: expected ';' before ')' token for(j=n-1,1) ^ chenar2.cpp:19:14: warning: right operand of comma operator has no effect [-Wunused-value] cout<<amj; ^ chenar2.cpp:20:2: error: expected primary-expression before 'for' for(i=m,2) ^ chenar2.cpp:20:2: error: expected ';' before 'for' chenar2.cpp:20:2: error: expected primary-expression before 'for' chenar2.cpp:20:2: error: expected ')' before 'for' chenar2.cpp:20:11: error: expected ';' before ')' token for(i=m,2) ^ chenar2.cpp:21:15: warning: right operand of comma operator has no effect [-Wunused-value] cout<<aij; ^ chenar2.cpp:23:2: error: expected primary-expression before 'return' return 0; ^ chenar2.cpp:23:2: error: expected ';' before 'return' chenar2.cpp:23:2: error: expected primary-expression before 'return' chenar2.cpp:23:2: error: expected ')' before 'return'
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Chenar2 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ă.