| | |
Enough
Please support our C++ advertiser: Intel Parallel Studio Home
Thread Solved |
•
•
Join Date: Feb 2008
Posts: 11
Reputation:
Solved Threads: 0
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
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)
#include <iostream> #include <vector> using namespace std; int main () { vector<int> myvector (100); // 10 zero-initialized ints unsigned int i; // assign some values: for (i=0; i<myvector.size(); i++) myvector.at(i)=i; cout << "myvector contains:"; for (i=0; i<myvector.size(); i++) cout << " " << myvector.at(i); cout << endl; return 0; }
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 .
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
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.
![]() |
Other Threads in the C++ Forum
- Previous Thread: two multidimensional vector
- Next Thread: Msxml
| Thread Tools | Search this Thread |
api application array arrays based beginner binary bitmap c++ c/c++ calculator char char* class classes coding compile compiler console conversion convert count data database delete desktop developer directshow dll dynamiccharacterarray email encryption error file forms fstream function functions game generator getline graph homeworkhelper iamthwee ifstream input int integer java lib linux list loop looping loops map math matrix memory multiple newbie news node number numbertoword output parameter pointer problem program programming project proxy python random read recursion recursive reference return rpg sorting string strings struct template templates text tree url vector video visual visualstudio win32 windows winsock word wordfrequency wxwidgets






