Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.40K
~152 People Reached
Favorite Forums
Member Avatar for plsoft

Hi guys, i'm new to C#. I have been trying to create a matrix or size 3x3 with the following code: [code] using System; class matrix { static void Main(string[] args) { Console.Write("Enter values for the matrix: "); int [,]matrx=new int[3,3]; for(int i=0;i<3;i++) { for (int j = 0; j …

Member Avatar for Ishwarya...
0
152