mihainan

Inmultire

Oct 24th, 2014
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. for(i = 0; i < n; i++)
  2. {
  3.     for(j = 0; j < n; j++)
  4.     {
  5.         for(k = 0; k < n; k++)
  6.         {
  7.             c[i][j] += a[i][k] * b[k][j];
  8.                 }
  9.         }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment