19.rand

#include <bits/stdc++.h>
using namespace std;
int main(){
    srand(time(NULL));
    cout << rand() << endl;
    cout << rand() % 100 + 1 << endl;
    cout << rand() % 10 + 1 << endl;
    return 0;
}

results matching ""

    No results matching ""