第四章 例4.6

来源:互联网 发布:cad怎么添加网络打印机 编辑:程序博客网 时间:2024/05/02 04:33
/* 输出实数时的有效位数 */#include <stdio.h>int main(){float x, y;x = 111111.111; y =  222222.222;printf("%f\n\n", x + y);return 0;}