摘要:
#include #include #include #define random(a,b) (rand() % (b-a) + a) using namespace std; int main() { srand((unsigned)time(NULL)); for(int i=0; i<10; i++) cout << random(1,100) ... 阅读全文
摘要:
#include #include #include #define random(a,b) (rand() % (b-a) + a) using namespace std; int main() { srand((unsigned)time(NULL)); for(int i=0; i<10; i++) cout << random(1,100) ... 阅读全文
|