nabeel

nabeel

  • NA
  • 15
  • 0

How sum of each row 2D array [3,6]

Oct 7 2011 3:57 AM

how sum of each row 2D array [3,6]


Write c# programming to the following:
-Initialize two D –array [3,6].
-Read there values from user.
-sum of each row and print the result.
-multiplication of each columns and print the result.
-print out the array as following.
output :
1                   2             3               4               5               6  sum=   21                              
2                   6             5               4               9               7  sum=  33                                    
8                   7             6               5               9               0  sum=  35                                
m=   16       m=  84     m=90      m=  80    m= 405     m= 0 


Answers (1)