Guest User

Untitled

a guest
Jan 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1. for(int i = 0; i < a.length; ++i){
  2.     for(int j = 0; j < a.length; j++){
  3.         // soma
  4.         c[i,j] = a[i,j] + b[i,j];
  5.         // multiplicação
  6.         c[i,j] = a[i,j] * b[i,j];
  7.     }
  8. }
Add Comment
Please, Sign In to add comment