我遇到了这个代码,但是当我执行它时,每次它给出不同的答案.我尝试了不同的编译器gcc和在线但是它们都给出了不同的答案.这里有代码
#include<stdio.h> void main() { float s; s=4/3.3*5-2.2; printf("%d",s); }
c
c ×1