COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
test.cpp
Go to the documentation of this file.
1#include <ctime>
2#include <iostream>
3#include <cstdlib>
4using namespace std;
5
6int random_num(void){
7 return rand() % 100;
8}
9
10int main(){
11 srand(time(NULL));
12 for (int i = 0; i < 10; i++) {
13 cout << "Random number: " << random_num() << endl;
14 }
15 return 0;
16}
int random_num(void)
Definition test.cpp:6
int main()
Definition test.cpp:10