期中测试题1
Posted haruna
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了期中测试题1相关的知识,希望对你有一定的参考价值。
#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的主要内容,如果未能解决你的问题,请参考以下文章