标签:print std long 类型 oat 范围 get lib printf
#include "stdio.h"
#include "stdlib.h"
unsigned int jc(unsigned int x);
void main()
{int m,k;
double p;
printf("Input m,k:\n");
scanf("%d,%d",&m,&k);
p=(double)jc(k)/jc(m-k);
printf("p=%f",p);
system("pause");
}
unsigned int jc(unsigned int x)
{unsigned i,y=1;
for(i=1;i<=x;i++)
y*=i;
return y;
}
double范围:
类型 比特数 有效数字 数值范围
float 类型 32 6-7 -3.4*10(-38)~3.4*10(38)
double类型 64 15-16 -1.7*10(-308)~1.7*10(308)
long double类型 128 18-19 -1.2*10(-4932)~1.2*10(4932)
unsigned int范围:0~65535
int范围:-32768~32767
函数返回的调用(红色部分)。
标签:print std long 类型 oat 范围 get lib printf
原文地址:http://www.cnblogs.com/cxr1234/p/6128303.html