c++ 隨機數

使用方法: 產生必定範圍隨機數的通用表示公式html 要取得[a,b)的隨機整數,使用(rand() % (b-a))+ a; 要取得[a,b]的隨機整數,使用(rand() % (b-a+1))+ a; 要取得(a,b]的隨機整數,使用(rand() % (b-a))+ a + 1; 通用公式:a + rand() % n;其中的a是起始值,n是整數的範圍。 要取得a到b之間的隨機整數,另外一種
相關文章
相關標籤/搜索