#4252
Matrice11
Scrieți un program care citește de la tastatură două numere naturale din intervalul [2,50]
, n
și m
, și elementele unei matrici cu n
linii și m
coloane, numere naturale distincte din intervalul [0,10
4
]
.
Programul interschimbă elementele de pe linia pe care se află valoarea minimă cu elementele cu linia pe care se află valoarea maximă din matrice, apoi afișează pe ecran matricea modificată, câte o linie a matricii pe câte o linie a ecranului, elementele fiecărei linii fiind separate prin câte un spațiu.
Problema | Matrice11 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #45676626 | Utilizator | |
Fișier | matrice11.c | Dimensiune | 1.54 KB |
Data încărcării | 18 Octombrie 2023, 19:39 | Scor / rezultat | 100 puncte |
matrice11.c: In function 'main': matrice11.c:84:4: warning: passing argument 1 of 'citire' from incompatible pointer type [enabled by default] citire(v, n, m); ^ matrice11.c:4:6: note: expected 'int (*)[51]' but argument is of type 'int (*)[100]' void citire (int v[][51], int n, int m) ^ matrice11.c:85:4: warning: passing argument 1 of 'lin_max' from incompatible pointer type [enabled by default] linmax = lin_max(v, n, m); ^ matrice11.c:29:5: note: expected 'int (*)[51]' but argument is of type 'int (*)[100]' int lin_max ( int v[][51], int n, int m ) ^ matrice11.c:86:4: warning: passing argument 1 of 'lin_min' from incompatible pointer type [enabled by default] linmin = lin_min(v, n, m); ^ matrice11.c:46:5: note: expected 'int (*)[51]' but argument is of type 'int (*)[100]' int lin_min ( int v[][51], int n, int m ) ^ matrice11.c:87:4: warning: passing argument 1 of 'interschimbare' from incompatible pointer type [enabled by default] interschimbare(v, m, linmax, linmin); ^ matrice11.c:70:6: note: expected 'int (*)[51]' but argument is of type 'int (*)[100]' void interschimbare ( int v[][51], int m, int linA, int linB ) ^ matrice11.c:88:4: warning: passing argument 1 of 'afisare' from incompatible pointer type [enabled by default] afisare(v, n, m); ^ matrice11.c:16:6: note: expected 'int (*)[51]' but argument is of type 'int (*)[100]' void afisare ( int v[][51], int n, int m ) ^ matrice11.c:81:17: warning: unused variable 'j' [-Wunused-variable] int n, m, i, j, linmax, linmin; ^ matrice11.c:81:14: warning: unused variable 'i' [-Wunused-variable] int n, m, i, j, linmax, linmin; ^ matrice11.c: In function 'citire': matrice11.c:11:15: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result] scanf("%d", &v[i][j]); ^ matrice11.c: In function 'main': matrice11.c:82:9: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result] scanf("%d %d", &n, &m); ^ matrice11.c: In function 'lin_max': matrice11.c:43:4: warning: 'maxpoz' may be used uninitialized in this function [-Wmaybe-uninitialized] return maxpoz; ^ matrice11.c: In function 'lin_min': matrice11.c:60:4: warning: 'minpoz' may be used uninitialized in this function [-Wmaybe-uninitialized] return minpoz; ^ matrice11.c: In function 'main': matrice11.c:31:24: warning: 'maxpoz' may be used uninitialized in this function [-Wmaybe-uninitialized] int i, j, max = -1, maxpoz; ^ matrice11.c:48:27: warning: 'minpoz' may be used uninitialized in this function [-Wmaybe-uninitialized] int i, j, min = 10001, minpoz; ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
1 | 0 secunde | OK. | 20 | 20 | Exemplu | |
2 | 0 secunde | OK. | 20 | 20 | ||
3 | 0 secunde | OK. | 20 | 20 | ||
4 | 0 secunde | OK. | 20 | 20 | ||
5 | 0 secunde | OK. | 20 | 20 | ||
Punctaj total | 100 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Matrice11 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ă.