码迷,mamicode.com
首页 > 其他好文 > 详细

期中测试题1

时间:2018-05-23 23:41:06      阅读:320      评论:0      收藏:0      [点我收藏+]

标签:http   style   class   ace   src   cas   col   inf   ast   

#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
class Dice{
    public:
        Dice(int n);
        int cast();
    private:
        int sides;
}; 
Dice::Dice(int n){
    sides=n;
}
int Dice::cast(){
    return rand()%sides+1;
}
int main(){
    int a,b,i=0;
    srand((unsigned)time(NULL));
    Dice d1(40);
    for(a=1;a<=400;a++){
        b=d1.cast();
        if(b==17){
            i++;
        }
    }
    cout<<i<<endl;
}

技术分享图片

期中测试题1

标签:http   style   class   ace   src   cas   col   inf   ast   

原文地址:https://www.cnblogs.com/haruna/p/9080054.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!