Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace zad
  7. {
  8. partial class Matrica
  9. {
  10. public static void Unesi_M(int n, int m, int[,] b)
  11. {
  12. for (int i = 0; i < n; i++)
  13. {
  14. for (int j = 0; j < m; j++)
  15. {
  16. Console.Write("b[{0}][{1}] = ", i, j);
  17. b[i, j] = Convert.ToInt32(Console.ReadLine());
  18. }
  19. }
  20. }
  21.  
  22.  
  23.  
  24. }
  25.  
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement