代码搜索:精度

找到约 2,443 项符合「精度」的源代码

代码结果 2,443
www.eeworm.com/read/199464/7849671

txt realnumbertype.txt

实数类型数据即实型数据,在C语言中实型数据又称为浮点型数据.Turbo C的实型数据又分为单精度型 (float)和双精度型(double)两种. 在C语言中实型数据有两种表达形式: 1.十进制数形式,由数字和小数点组成.如5.734,0.273. 2.指数形式,如546E+3或546E3
www.eeworm.com/read/492896/6411842

txt 高精度相乘(整数和浮点数)_200612119111.txt

#include #include #define N 1000 /*2.3*1.1=2.53 ;22*11=242*/ void multy(char *a,char *b)/*可用于高精度整数和高精度浮点数相乘,结果放在a中*/ { int i,j,da,db,la,lb,lta,ltb; da=db=0; la=strlen(a);