微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 嵌入式设计讨论 > MCU和单片机设计讨论 > 求一个能产生随机数的函数。我的为什么不能用

求一个能产生随机数的函数。我的为什么不能用

时间:10-02 整理:3721RD 点击:
#include "msp430f449.h"
#include <stdlib.h>  
#include <stdio.h>  
#include <time.h>
main( void )
{
  // Stop watchdog timer to prevent time out reset
  WDTCTL = WDTPW + WDTHOLD;
int i,k;  
srand( (unsigned)time( NULL ) );   
for( i = 0; i < 10;i++ )  
k= rand()%100+1;
while(1);
}  

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top