Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main() {
- /*
- Vi?t chuong trình du?i d?ng hàm th?c hi?n các ch?c nang sau:
- 1. Nh?p ma tr?n g?m mxn ph?n t? có ki?u nguyên.
- 2. Hi?n th? ma tr?n v?a nh?p ra màn hình theo d?ng b?ng.
- 3. Tính t?ng các ph?n t? c?a ma tr?n
- 4. Tìm giá tr? nh? nh?t trên hàng 0 c?a ma tr?n.
- 5. Ghi vào t?p matran1.txt nh?ng ph?n t? chia h?t cho 3 trong ma tr?n. Ð?c d? li?u t? t?p ra màn hình.
- */
- int m, n;
- printf("Nhap m, n = ");
- scanf("%d %d", &m, &n);
- int a[m][n];
- int tong = 0;
- int i, j;
- for (i = 0; i < m; i++)
- for (j = 0; j < n; j++) {
- printf("a[%d,%d] = ", i, j);
- scanf("%d", &a[i][j]);
- tong += a[i][j];
- }
- printf("Tong cac phan tu cua ma tran la: %d\n", tong);
- int max = a[0][0];
- for (j = 1; j < n; j++)
- if (a[0][j] > max ) max = a[0][j];
- printf("Gia tri lon nhat tren hang 0 cua ma tran la: %d\n", max);
- FILE *fin, *fout;
- fout = freopen("matran1.txt", "w", stdout);
- for (i = 0; i < m; i++)
- for (j = 0; j < n; j++)
- if (a[i][j] % 3 == 0)
- printf("%d ", a[i][j]);
- fclose(fout);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement