Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main(int argc, const char * argv[]) {
- int n, m;
- scanf("%d%d", &n, &m);
- int mat[n][m];
- for(int i = 0; i < n; i++) {
- for(int j = 0; j < m; j++) {
- scanf("%d", &mat[i][j]);
- }
- }
- int najgolem_zbir = 0;
- int najgolema_kolona = 0;
- for(int j = 0; j < m; j++) {
- int zbir = 0;
- for(int i = 0; i < n; i++) {
- zbir += mat[i][j];
- }
- if(zbir > najgolem_zbir) {
- najgolem_zbir = zbir;
- najgolema_kolona = j;
- }
- }
- int najgolem_zbir2 = 0;
- int najgolema_kolona2 = 0;
- for(int j = 0; j < m; j++) {
- int zbir = 0;
- for(int i = 0; i < n; i++) {
- zbir += mat[i][j];
- }
- if(zbir > najgolem_zbir2 && j != najgolema_kolona) {
- najgolem_zbir2 = zbir;
- najgolema_kolona2 = j;
- }
- }
- for(int i = 0; i < n; i++) {
- int pom = mat[i][najgolema_kolona];
- mat[i][najgolema_kolona] = mat[i][najgolema_kolona2];
- mat[i][najgolema_kolona2] = pom;
- }
- for(int i = 0; i < n / 2; i++) {
- int pom = mat[i][najgolema_kolona];
- mat[i][najgolema_kolona] = mat[n - i - 1][najgolema_kolona];
- mat[n - i - 1][najgolema_kolona] = pom;
- }
- for(int i = 0; i < n / 2; i++) {
- int pom = mat[i][najgolema_kolona2];
- mat[i][najgolema_kolona2] = mat[n - i - 1][najgolema_kolona2];
- mat[n - i - 1][najgolema_kolona2] = pom;
- }
- for(int i = 0; i < n; i++) {
- for(int j = 0; j < m; j++) {
- printf("%d ", mat[i][j]);
- }
- printf("\n");
- }
- return 0;
- }
- /*
- 1 2 3 4 5 6 7 8
- 2 1 2 3 4 5 6 7
- 3 4 5 6 7 8 9 10
- 4 5 6 7 8 9 10 0
- 5 6 7 8 9 10 0 1
- 6 7 8 9 10 0 1 2
- **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement