首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
王向的代码贴
→
全部
[C++]猜数字小游戏
#include "iostream"
#include <time.h>
using namespace std;
void main()
{
srand( (unsigned)time( NULL ) );
int number = rand() % 100;
int count=0;
bool ok=true;
int small=0;
int large=100;
......................
阅读全部
| 2012年3月16日 04:53
1
王向
全部(1)
C++(1)