Tag: divide

C#:将int除以100

如何将int除以100? 例如: int x = 32894; int y = 32894 / 100; 为什么这会导致y为328而不是328.94 ?