不重複隨機序列

#include <iostream> #include <time.h> #include <stdlib.h> using namespace std; int random(int a,int b) { srand(NULL); return rand()%(b-a)+a; } void exchange(int &a,int &b) { int temp; temp=a;
相關文章
相關標籤/搜索