#3417
GenMat28
Scrieți un program care citește de la tastatură un număr natural n
și construiește o matrice cu n
linii și n
coloane ale cărei elemente vor primi valori dupa cum urmează:
1 1
, va fi 1
.1 2
și 2 1
, va fi n
.1 3
, 2 2
și 3 1
, va fi 2
.1 4
, 2 3
, 3 2
și 4 1
, va fi n-1
.n-1 n
și n n-1
, va fi n
.n n
, va fi 1
.Problema | GenMat28 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #50833188 | Utilizator | |
Fișier | genmat28.cpp | Dimensiune | 398 B |
Data încărcării | 09 Mai 2024, 09:35 | Scor / rezultat | Eroare de compilare |
genmat28.cpp: In function 'int main()': genmat28.cpp:13:8: error: 'j' was not declared in this scope if((1+ j) % 2 == 0) ^ genmat28.cpp: At global scope: genmat28.cpp:20:1: error: 'a' does not name a type a[i][j] = a[n else a[i][j] = a[n+1][n i] = (1+1)/2; +1 -1] = n((1+j) / 2) + 1; ^ genmat28.cpp:20:53: error: expected unqualified-id before '+' token a[i][j] = a[n else a[i][j] = a[n+1][n i] = (1+1)/2; +1 -1] = n((1+j) / 2) + 1; ^ genmat28.cpp:22:1: error: expected unqualified-id before 'for' for(int i = 1; i <= n; i++, cout << '\n') ^ genmat28.cpp:22:16: error: 'i' does not name a type for(int i = 1; i <= n; i++, cout << '\n') ^ genmat28.cpp:22:24: error: 'i' does not name a type for(int i = 1; i <= n; i++, cout << '\n') ^ genmat28.cpp:24:16: error: 'j' does not name a type for(int j = 1; j <= n; j++) ^ genmat28.cpp:24:24: error: 'j' does not name a type for(int j = 1; j <= n; j++) ^ genmat28.cpp:28:5: error: 'cout' does not name a type cout << a[i][j] << ' '; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema GenMat28 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ă.