CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main() {
srand(time(0));
cout << rand()%10+1 <<endl;
cout << rand()%10+1 <<endl;
cout << rand()%10+1 <<endl;
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run