数值计算的例子和参考书籍

源代码在线查看: 随机数.cpp

软件大小: 11 K
上传用户: quzhengjie
关键词: 数值计算 书籍
下载地址: 免注册下载 普通下载 VIP

相关代码

				// 随机数
				#include 
				#include 
				#include 
				
				int main()
				{
				    int n,MAX;
				    srand((unsigned)time(NULL));
				    MAX=1000000;
				    n=rand()%MAX+1;
				    printf("%d\n",n);
				    while(1);
				    return(0);
				}
							

相关资源