请教(在VC++ MFC中如何使用随机函数)
答案:4 悬赏:10 手机版
解决时间 2021-03-26 21:13
- 提问者网友:世勋超人
- 2021-03-25 20:42
请教(在VC++ MFC中如何使用随机函数)
最佳答案
- 五星知识达人网友:行雁书
- 2021-03-25 21:57
srand设置种子,srand(time(0));
int nRand = rand();
int nRand = rand();
全部回答
- 1楼网友:傲气稳了全场
- 2021-03-26 01:12
******************************************************************************
#include
#include
#include
void main( void )
{
int i;
srand( (unsigned)time( NULL ) );
for( i = 0; i < 10;i++ )
printf( " %6d\n", rand() );
}
******************************************************************************************************************************
学vc的人要学会查MSDN啊!
#include
#include
#include
void main( void )
{
int i;
srand( (unsigned)time( NULL ) );
for( i = 0; i < 10;i++ )
printf( " %6d\n", rand() );
}
******************************************************************************************************************************
学vc的人要学会查MSDN啊!
参考资料:MSDN
- 2楼网友:杯酒困英雄
- 2021-03-26 01:00
int x = rand() % 10;产生一个 0 - 9的整数
- 3楼网友:轻雾山林
- 2021-03-25 23:37
#include
#include
#include
int main()
{
srand(time(NULL));
int x=rand()%100;
cout< return 0;
}
#include
#include
int main()
{
srand(time(NULL));
int x=rand()%100;
cout<
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯