MFC中产生随机数
MFC中随机产生20-40之间含有单位的随机数,使这些随机数之间的差不超过1,这些随机数分别在statictext显示,分别命名为IDC_10_1,IDC_10_2,ID...
MFC中随机产生20-40之间含有单位的随机数,使这些随机数之间的差不超过1,这些随机数分别在static
text显示,分别命名为IDC_10_1,IDC_10_2,IDC_10_3,IDC_10_4...,如:产生25℃,24℃,25℃,24℃,可以是小数,精确到小数点后2位 展开
text显示,分别命名为IDC_10_1,IDC_10_2,IDC_10_3,IDC_10_4...,如:产生25℃,24℃,25℃,24℃,可以是小数,精确到小数点后2位 展开
1个回答
展开全部
#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() );
}
#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() );
}
追问
MFC里面,用static text显示,这个MFC随机数也不对吧,MFC里面用 static text显示是这样的吧,this->SetDlgItemInt(IDC_10_2, (rand()) % 10, TRUE);IDC_10_2是static text的名称
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询