Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
- #include <math.h>
- int main(int argc, 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]);
- }
- }
- for(int i = 0; i < n; i++) {
- int x = 1;
- for(int i2 = i + 1; i2 < n; i2++) {
- int ok = 1;
- for(int j = 0; j < m; j++) {
- if(mat[i][j] != mat[i2][j]) {
- ok = 0;
- }
- }
- if(ok == 1) {
- for(int j = 0; j < m; j++) {
- mat[i2][j] += x;
- }
- x++;
- }
- }
- }
- for(int i = 0; i < n; i++) {
- for(int j =0 ; j < m; j++) {
- printf("%d ", mat[i][j]);
- }
- printf("\n");
- }
- }
- /*
- 5 4
- 1 2 10 0
- 7 2 3 1
- 1 2 10 0
- 7 2 3 1
- 1 2 10 0
- **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement