Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Console.WriteLine("Unesi dimenzije matrice: ");
  2. int n = int.Parse(Console.ReadLine());
  3. int[][] mat;
  4.  
  5. UnosMatrice(out mat, n, n);
  6. Console.WriteLine("Matrica pre promene");
  7. PrikazMatrice(mat);
  8. for (int i = 0; i < mat.Length; i++)
  9. {
  10. IzbaciSve(ref mat[i], 1);
  11. }
  12. Console.WriteLine("Matrica posle promene");
  13. PrikazMatrice(mat);
  14. Console.ReadKey();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement