Click here to Skip to main content
15,885,435 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
can someone help me to finish this code to work whole in one code.


C++
# include ...........
.....................
int main()
{
 readMatrice(A,n,m);
 printMatrice(A,n,m);
 convertMatriceToVector(A,n,m,V);
 writeVector(V);
 sortVector(V);
 writeVector(V);
 convertVectorToMatrice(V,n,m,A);
 printMatrice(A,n,m);
 cin.get(); return 0;
}


What I have tried:

i tried but it's not ok. can't work in one code
Posted
Updated 10-Jan-18 10:04am
Comments
David_Wimbley 10-Jan-18 15:01pm    
How in the world do you expect any of us to know how to finish this code? You need to update your question using improve question to provide relevant code samples (not a code dump, nobody has time to read a massive code dump) and a clear explanation of where you are stuck.

All you did was provide a sample of a bunch of function calls.

Quote:
can someone help me to finish this code to work whole in one code.

Finish what? this code is barely as starting point.
All you gave us a couple function names and not explanation. Your teacher is the only one that can help you with no explanation.

We do not do your HomeWork.
HomeWork is not set to test your skills at begging other people to do your work, it is set to make you think and to help your teacher to check your understanding of the courses you have taken and also the problems you have at applying them.
Any failure of you will help your teacher spot your weaknesses and set remedial actions.
Any failure of you will help you to learn what works and what don't, it is called 'trial and error' learning.
So, give it a try, reread your lessons and start working. If you are stuck on a specific problem, show your code and explain this exact problem, we might help.
 
Share this answer
 
Start writing the Matrice and Vector classes (at least their skeletons), then start filling properly the methods. Take advantage, if you can, of the modern features of C++, in order to simplify your task.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900