herrDeng網內搜尋
自訂搜尋
Ads
2017年5月11日 星期四
2017年5月9日 星期二
C++ bmi class
請用C++11 random產生30筆身高、體重的資訊,用class ,並且使用適當地虛擬隨機亂數,以class method的方式計算bmi
提示:
提示:
person X[30]; mt19937 gen(clock()); // Mersenne Twister algorithm is based on the // Mersenne prime 219937−1 normal_distributiondis0(163, 7); normal_distribution dis1(55, 5); ……
訂閱:
文章 (Atom)
熱門文章
-
11!=?
-
計算你上學期加權平均
-
計算你的BMI
-
輸出字串20次
-
int a[]={21, 23, 57, 13 ,17, 6}; float average; average=?
-
猜數字
-
1. 利用遞迴input n算2^n 2. 用C算GCD(3333,456)
-
C字串練習 字串 char word[]="You win!"; 輸出為: You win! You win You wi You w You You Yo Y 給進階使用者: gets () 是個危險的函式!
-
解釋memset, memcpy