#include <stdio.h>
int main(){ float f=3.1415926; printf ("浮点型变量f=%.7f\n",f); return 0;}运行结果是3.1415925,为什么不是926 ??把最后一位的6换成其它几个数字,也会有类似的情况