Enough

Please support our C++ advertiser: Intel Parallel Studio Home
Thread Solved

Join Date: Feb 2008
Posts: 11
Reputation: aircraft is an unknown quantity at this point 
Solved Threads: 0
aircraft aircraft is offline Offline
Newbie Poster

Enough

 
0
  #1
Feb 14th, 2008
How can in the output, I want ONLY ONE LINE from 1 to 99, the windows is not enough..

myvector contains: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 5
5 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
Press any key to continue
  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4.  
  5. int main ()
  6. {
  7. vector<int> myvector (100); // 10 zero-initialized ints
  8. unsigned int i;
  9.  
  10. // assign some values:
  11. for (i=0; i<myvector.size(); i++)
  12. myvector.at(i)=i;
  13.  
  14. cout << "myvector contains:";
  15. for (i=0; i<myvector.size(); i++)
  16. cout << " " << myvector.at(i);
  17.  
  18. cout << endl;
  19.  
  20. return 0;
  21. }
Reply With Quote Quick reply to this message  
Join Date: Dec 2007
Posts: 18
Reputation: Aashath is an unknown quantity at this point 
Solved Threads: 5
Aashath's Avatar
Aashath Aashath is offline Offline
Newbie Poster

Re: Enough

 
0
  #2
Feb 14th, 2008
Refer this http://www.daniweb.com/forums/thread31665.html

else try this one :
mode con cols=80 lines=25

it doesn't make it full screen,but varing cols will do .
"The most important single aspect of software development is to be clear about what you are trying to build." - Bjarne Stroustrup
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 15,473
Reputation: Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute Ancient Dragon has a reputation beyond repute 
Solved Threads: 1477
Team Colleague
Featured Poster
Ancient Dragon's Avatar
Ancient Dragon Ancient Dragon is offline Offline
Still Learning

Re: Enough

 
0
  #3
Feb 14th, 2008
If you want to put all those 100 numbers on one line you will have to change the font size to something very very tiny -- so tiny you probably won't be able to read the numbers.
Don't PM me with questions -- you might get a nasty PM in response. If you have a question then post it in one of the forums.
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:



Other Threads in the C++ Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC