Write a C++ Program to Generate Random Numbers between 0 and 100
Solution:
/* C++ Program to Generate Random Numbers between 0 and 100 */
#include<iostream>
#include<stdlib.h>
using namespace std;
int main()
{
int i; //loop counter
int num; //store random number
cout<<"Generating Random Numbers Below ::
";
for(i=1;i<=10;i++)
{
num=rand()%100; //get random number
cout<<" "<<num<<" ";
}
cout<<"
";
return 0;
}
Output:
/* C++ Program to Generate Random Number between 0 and 100 */
Generating Random Numbers Below ::
41 67 34 0 69 24 78 58 62 64
Process returned 0
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a pointer with example?
What do you mean by inheritance in c++?
what does the following statement mean? int (*a)[4]
Tell me can a pure virtual function have an implementation?
What do you mean by inheritance in c++? Explain its types.
What is #include iostream h in c++?
Describe delete operator?
Is it possible for the objects to read and write themselves?
What are the rules about using an underscore in a c++ identifier?
What is #include ctype h in c++?
What is time_t c++?
How is objective c different from c++?