943,733 Members | Top Members by Rank

Ad:
  • C++ Discussion Thread
  • Marked Solved
  • Views: 576
  • C++ RSS
Feb 14th, 2008
0

Enough

Expand Post »
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
C++ Syntax (Toggle Plain Text)
  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. }
Reputation Points: 10
Solved Threads: 0
Newbie Poster
aircraft is offline Offline
11 posts
since Feb 2008
Feb 14th, 2008
0

Re: Enough

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 .
Reputation Points: 11
Solved Threads: 5
Newbie Poster
Aashath is offline Offline
18 posts
since Dec 2007
Feb 14th, 2008
0

Re: Enough

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.
Sponsor
Team Colleague
Featured Poster
Reputation Points: 5608
Solved Threads: 2282
Retired and Enjoying Life
Ancient Dragon is offline Offline
21,950 posts
since Aug 2005

This thread is solved

Either the thread starter or a moderator has marked this thread as solved. You can most likely trust the responses and answers given. There is most likely no reason for any further responses to be posted here. If you have a related question, please start a new thread in this forum instead.

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in C++ Forum Timeline: two multidimensional vector
Next Thread in C++ Forum Timeline: Msxml





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC