{}
run-icon
main.cpp
// Online C++ compiler to run C++ program online #include <iostream> #include <cstdlib> // 包含 srand 和 rand using namespace std; int main() { // Write C++ code here srand(0); cout << rand() << " " << rand() << " " << rand(); return 0; }
Output