#4254
Matrice12
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 coloana pe care se află valoarea minimă cu elementele de pe coloana pe care se află valoarea maximă din matrice, apoi 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 | Matrice12 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #45676842 | Utilizator | |
Fișier | matrice12.c | Dimensiune | 1.54 KB |
Data încărcării | 18 Octombrie 2023, 19:43 | Scor / rezultat | 100 puncte |
matrice12.c: In function 'main': matrice12.c:84:4: warning: passing argument 1 of 'citire' from incompatible pointer type [enabled by default] citire(v, n, m); ^ matrice12.c:4:6: note: expected 'int (*)[51]' but argument is of type 'int (*)[100]' void citire (int v[][51], int n, int m) ^ matrice12.c:85:4: warning: passing argument 1 of 'col_max' from incompatible pointer type [enabled by default] colmax = col_max(v, n, m); ^ matrice12.c:29:5: note: expected 'int (*)[51]' but argument is of type 'int (*)[100]' int col_max ( int v[][51], int n, int m ) ^ matrice12.c:86:4: warning: passing argument 1 of 'col_min' from incompatible pointer type [enabled by default] colmin = col_min(v, n, m); ^ matrice12.c:46:5: note: expected 'int (*)[51]' but argument is of type 'int (*)[100]' int col_min ( int v[][51], int n, int m ) ^ matrice12.c:87:4: warning: passing argument 1 of 'interschimbare' from incompatible pointer type [enabled by default] interschimbare(v, n, colmax, colmin); ^ matrice12.c:70:6: note: expected 'int (*)[51]' but argument is of type 'int (*)[100]' void interschimbare ( int v[][51], int n, int colA, int colB ) ^ matrice12.c:88:4: warning: passing argument 1 of 'afisare' from incompatible pointer type [enabled by default] afisare(v, n, m); ^ matrice12.c:16:6: note: expected 'int (*)[51]' but argument is of type 'int (*)[100]' void afisare ( int v[][51], int n, int m ) ^ matrice12.c:81:17: warning: unused variable 'j' [-Wunused-variable] int n, m, i, j, colmax, colmin; ^ matrice12.c:81:14: warning: unused variable 'i' [-Wunused-variable] int n, m, i, j, colmax, colmin; ^ matrice12.c: In function 'citire': matrice12.c:11:15: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result] scanf("%d", &v[i][j]); ^ matrice12.c: In function 'main': matrice12.c:82:9: warning: ignoring return value of 'scanf', declared with attribute warn_unused_result [-Wunused-result] scanf("%d %d", &n, &m); ^ matrice12.c: In function 'col_max': matrice12.c:43:4: warning: 'maxpoz' may be used uninitialized in this function [-Wmaybe-uninitialized] return maxpoz; ^ matrice12.c: In function 'col_min': matrice12.c:60:4: warning: 'minpoz' may be used uninitialized in this function [-Wmaybe-uninitialized] return minpoz; ^ matrice12.c: In function 'main': matrice12.c:48:27: warning: 'minpoz' may be used uninitialized in this function [-Wmaybe-uninitialized] int i, j, min = 10001, minpoz; ^ matrice12.c:31:24: warning: 'maxpoz' may be used uninitialized in this function [-Wmaybe-uninitialized] int i, j, max = -1, maxpoz; ^
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 Matrice12 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ă.