使用语言:c++
发展环境:dev-c++ 4.9.9.1
简易的猜数字游戏,可以猜数字,玩的方法就像论坛的猜数字一样
记得每个数字中间要空格喔!!!
#include<iostream>
#include<ctime>
using namespace std;
class Guess {
int ans;
public:
Guess(){};
void Generate();
int Score(const Guess &) const;
friend istream& operator>>(istream & is, Guess & g) {
is>>g.ans>>g.ans>>g.ans>>g.ans; // 尚未加入输入控制
return is;
}
friend ostream& operator<<(ostream& os, const Guess & g) {
os<<g.ans<<' '<<g.ans<<' '<<g.ans<<' '<<g.ans;
return os;
}
};
void Guess::Generate()
{
int x[]={1,2,3,4,5,6,7,8,9}, c, j;
for (c=0;c<4;c++) {
j=rand()%(9-c)+c;
ans=x;
x=x;
}
}
..
访客只能看到部份内容,免费 加入会员 或由脸书 Google 可以看到全部内容