I have the following code. #include<iostream> #include "time.h" using namespace std; void printRandomNumber() { srand(time(NULL)); cout << rand() % 3; } ...
確定! 回上一頁