19,464
社区成员
发帖
与我相关
我的任务
分享
#include <iostream>
#include <time.h>
using namespace std;
int main()
{
srand( (unsigned)time( NULL ) );//Ëæ»úÊý·¢ÉúÆ÷µÄ³õʼ»¯º¯Êý,³£³£Ê¹ÓÃϵͳʱ¼äÀ´³õʼ»¯
while(1)
{
int nRand = rand()%10+4;//randº¯ÊýÅäºÏʹÓ㬲úÉúËæ»úÊýµÄÆðʼ·¢ÉúÊý¾Ý
cout<<nRand<<endl;
if(nRand == 1)
{
int k = 0;
}
}
};
include "stdafx.h"