Hi
I want to have a n*n matrix
is there sombody to help me??
how i can write it??

Recommended Answers

All 5 Replies

Hi
I want to have a n*n matrix
is there sombody to help me??
how i can write it??

Start from this forum announcement: http://www.daniweb.com/forums/thread78060.html
(especially Describe your problem clearly and fully! paragraph).

Hi
I want to have a n*n matrix
is there sombody to help me??
how i can write it??

You may start by making a two dimensional
array, say

matrix[n][n];

, and store values in that array.

I'm sorry for this nonsense post. Just trying something good out after reading the rules.

your post isnt really nonsense.

at least, it fits the question.

Start with declaring a 2 dimensional array.

int arr[x][y];

X and y may be input by user or may be fixed to a very high value.Your choice.
Now just Input the values to store in this array as you do normally using a loop...

for(int i=0;i<x;i++)
for(int j=0;j<y;j++)

//input your values...

ALso let us know how much work have you done...

tnx for your answers ,actually my question was about the n*n matrixs that we do not know their parameter (n) .we will get the parameter from user .any way my question has solved .
thanks again & Bye

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.