C++ 實現隨機小數的幾種方法

1.rand()實現方法 #include <iostream> #include <vector> using namespace std; int main() { vector<double> tmpData; srand((unsigned)time(NULL));//這裏以當前時間爲種子 while (i<100) { double B = (double)(rand() %
相關文章
相關標籤/搜索