Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. static void Main(string[] args)
  2. {
  3. int[,] a = ContentArrayOne();
  4.  
  5. int[,] b = ContentArrayTwo(a);
  6.  
  7. string s = OutputInformationA(a);
  8.  
  9. s = OutputInformationB(b, s);
  10.  
  11. int alpha = Sum(b, ref s);
  12.  
  13. s = CalcMin(b, s);
  14.  
  15. s = Calc(s, alpha);
  16.  
  17. SavingData(s);
  18.  
  19. Console.ReadKey();
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement