Write a program to create a vector of 100 ints. Fill it with 100 small, random
integers between 1 and 100, inclusive, by using an appropriate call from the
math library. Then display the contents of the vector. (Your program should
use rand() and the modulo operator, at least.)..
........................................................................
#include <vector>
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
float f;
vector<string> list(100);
for( int i=0;i<100;i++)
{
f=rand() % 10;
list[i]=f;
}
for(i=0;i<100;i++)
cout<<"your 100random number are"<<endl;