옵션 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | //3X3 행렬을 입력받은 후, 각 행의 합과 열의 합을 구하는 프로그램 #include <stdio.h> #include <string.h> #define N 3 void readNxN(int a[N][N]); void sumNxN(const int a[N][N], int rSum[N], int cSum[N]); void printNxN(const int a[N][N], const int rSum[N], const int cSum[N]); int main() { int x[N][N]; int rSum[N] = { 0 }, cSum[N] = { 0 }; readNxN(x); sumNxN(x, rSum, cSum); printNxN(x, rSum, cSum); return 0; } void read(int a[N][N]) { int x, y; printf("%d x %d 정수 행렬을 입력하세요.\n"); for (x = 0; x < N; ++x) { for (y = 0; y < N; ++y) { printf("a[%d][%d] = "); scanf_s("%d", &a[x][y]); printf(" "); } } } void sumNxN(const int a[N][N], int rSum[N], int cSum[N]) { int x, y; for (x = 0; x < N; ++x) { for (y = 0; y < N; ++y) { rSum[x] += a[x][y]; } } for (y = 0; y < N; ++y) for (x = 0; x < N; ++x) cSum[y] += a[x][y]; } void printNxN(const int a[N][N], const int rSum[N], const int cSum[N]) { int x, y; for (x = 0; x < N; ++x) { for (y = 0; y < N; ++y) printf("\t%d|", a[x][y]); printf("%d\n", rSum[x]); } for (y = 0; y < N; ++y) printf("\t%d|", cSum[y]); } | cs |