Hi, I hope you can help me. I need a piece of program that with a given 2 dimensional matrix, it aligns it, so that it is shown justified in the console.
I already have one part, that aligns negative and positive numbers, but then I put some decimals numbers and it doesn't work; it doesn't align when there are positive, negative and decimals.
What makes it easier is that it is only with 3x3 matrix. So, I built a 3x3 matrix and then I add the independent terms. I am solving systems of equations 3x3, so what I want is a display like this. (Sorry for my english :( ).
** Don't pay attention to the points, I put them to show spaces. I couldn't make cplusplus to display them without nothing separating the numbers.
Thanks for the answer, but as far as I know, setw() leaves a number of given spaces after the number. Which means that setw(3) and then "2.5" would leave 3 spaces after the number and setw(3) and then "3" would leave 3 spaces after that one. Tell me if I'm wrong, please...
Can anybody help me with a specific code? I can't figure out how to align them all. My algorithm functions with some cases, but then something comes out. I fix that, but that just dealigns others.
** A function for example, that takes as an argument one value. Then, I loop through the matrix, giving as argument each value of it and it shows them one by one.
** It doesn't matter what you choose, I just want that general alignment, no matter the typ of numbers (positive, negative, decimals).
Don't bother. I've just figured out how to do it. It turns out, I just needed to focus on the independent terms. The alignment of the other numbers was already done.