cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Columnar results in C++ Vis Basic
Columnar results in C++ Vis Basic
Mar 27, 2008 at 12:22pm UTC
firebird
(15)
Ok, I need the results to be displayed as such:
laid out in a business-like, columnar report
Can someone assist me on how to accomplish?
Apr 1, 2008 at 4:17am UTC
buffbill
(467)
Use setw() and setprecision() in the iomanip header
e.g. cout<<setw(4)<<n<<setw(3)<<y<<endl;
Topic archived. No new replies allowed.