Advertisement
iamakulov

Untitled

Dec 8th, 2013
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. for(i = 0; i < m; i++)
  2. {
  3.     max = MR[i][0];
  4.     for(j = 1; j < n; j++)
  5.         if(MR[i][j] > max)
  6.             max = MR[i][j];
  7.  
  8.     r[i]=max;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement