#include<stdio.h> void main() { float a = 5, b = 2; int c; c = a % b; printf("%d", c); }
我得到浮点错误这个程序 - 我.. 有人请解释这个..
c
c ×1