4个回答
展开全部
******************************************************************************
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
void main( void )
{
int i;
/* Seed the random-number generator with current time so that
* the numbers will be different every time we run.
*/
srand( (unsigned)time( NULL ) );
/* Display 10 numbers. */
for( i = 0; i < 10;i++ )
printf( " %6d\n", rand() );
}
******************************************************************************************************************************
学vc的人要学会查MSDN啊!
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
void main( void )
{
int i;
/* Seed the random-number generator with current time so that
* the numbers will be different every time we run.
*/
srand( (unsigned)time( NULL ) );
/* Display 10 numbers. */
for( i = 0; i < 10;i++ )
printf( " %6d\n", rand() );
}
******************************************************************************************************************************
学vc的人要学会查MSDN啊!
参考资料: MSDN
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include<iostream.h>
#include <ctime>
#include <stdlib.h>
int main()
{
srand(time(NULL));
int x=rand()%100;
cout<<x<<endl;
return 0;
}
#include <ctime>
#include <stdlib.h>
int main()
{
srand(time(NULL));
int x=rand()%100;
cout<<x<<endl;
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
srand设置种子,srand(time(0));
int nRand = rand();
int nRand = rand();
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int x = rand() % 10;产生一个 0 - 9的整数
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询