首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴王向的代码贴全部
#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
王向