How to store the numbers between 100 and 200 in an array having size of 100 in C++? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 8

How to store the numbers between 100 and 200 in an array having size of 100 in C++?

25th Jun 2020, 5:10 PM
Salmanul Faris
8 Answers
+ 2
Arrays with sequential numbers ....100 -> 200...(lower bound and upper bound included)....bare in mind the array now has a length of 101 so adjust/amend as you need:- #include <iostream> #include <numeric> // iota() using namespace std; int main() { int arrayA[101]; iota(arrayA,arrayA+101, 100); for(unsigned int i = 0; i < 101;i++) cout << arrayA[i] << ' '; cout << endl; //##################### int arrayB[101]; for(unsigned int i = 0; i < 101;i++) arrayB[i] = i+100; for(unsigned int i = 0; i < 101;i++) cout << arrayB[i] << ' '; return 0; }
26th Jun 2020, 8:32 PM
rodwynnejones
rodwynnejones - avatar
+ 7
rodwynnejones Sorry, didn't got that, me a very beginner, pls explain with some examples, anyway thanks...
25th Jun 2020, 5:35 PM
Salmanul Faris
+ 7
rodwynnejones sequential one
26th Jun 2020, 1:01 AM
Salmanul Faris
+ 6
https://code.sololearn.com/c49M8hw2PgS4/?ref=app Finally got it. I think there are several methods for this, but i know this only. I tried to solve this with nested loops, but can't solve. I solved this by defining some seperate functions. So those who knows the alternative (easy) ways to solve this problem, pls share your ideas. Especially who knows solving this problem with the nested loop.
26th Jun 2020, 11:31 AM
Salmanul Faris
+ 6
rodwynnejones Thanks ❤️
27th Jun 2020, 1:47 AM
Salmanul Faris
+ 4
You can quickly assign sequential numbers to an array using 'iota' from the 'numeric' header file...or...use a simple 'for loop' with 'rand' from 'cstdlib' or.... have a look at the 'random' header file.
25th Jun 2020, 5:29 PM
rodwynnejones
rodwynnejones - avatar
+ 3
If you want to sort 100 given numbers (between 100 and 200) you can do it with a while loop that inside will test wether the first number in your array is greater than the next and so on. There are many ways to do it, but perhaps that's an easy one.
25th Jun 2020, 9:28 PM
DParlo
DParlo - avatar
+ 2
Are you looking to make a array with 100 random numbers between 100 and 200 (inclusive) or sequential numbers e.g 100, 101, 102, 103, 104 .....--> 200?
25th Jun 2020, 6:17 PM
rodwynnejones
rodwynnejones - avatar