标签: c++ c
为什么此代码打印的很小,但浮点数相等?
#include <stdio.h> int main() { int c; float a=0.9; if(a<0.9) printf("small"); return 0; }