2019年6月5日 星期三

[C++]隨機亂數 用法 rand()

#include <iostream>
#include<stdlib.h>
#include <time.h>


srand(time(NULL));//此行每次都加表示每次都會重新刷新
int tenbuf = int((rand() % 10) + 1);//1~10
int hubuf = int((rand() % 100) + 1);//1~100

測試環境 mfc c++空專案 

沒有留言:

張貼留言

[SQL]顯示千分位與小數顯示

  CONVERT ( data_type [ ( length ) ] , expression [ , style ] ) CONVERT style參數說明 1  (expression為 money 或 smallmoney型別): 0 : 預設,保留小數位後兩位,並四捨...