| | |
Enough
Please support our C++ advertiser: Programming Forums - DaniWeb Sister Site
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
![]() |
Other Threads in the C++ Forum
- Previous Thread: two multidimensional vector
- Next Thread: Msxml
Views: 502 | Replies: 2
| Thread Tools | Search this Thread |
Tag cloud for C++
6 api application array arrays based beginner binary c++ c/c++ calculator char char* class classes code coding compile compiler console conversion convert count data database delete developer display dll dynamiccharacterarray email encryption error file format forms fstream function functions game generator givemetehcodez graph iamthwee ifstream image input int java lib list loop looping loops map math matrix memory multiple newbie news number numbertoword output pointer problem program programming project python random read recursion recursive reference return rpg search simple sort sorting spoonfeeding string strings struct template templates text tree url variable vector video visual visualstudio win32 windows winsock wordfrequency wxwidgets






