In C# integer arithmetic, does a/b/c always equal a/(b*c)?

前端 未结 6 1237
半阙折子戏
半阙折子戏 2021-02-01 11:39

Let a, b and c be non-large positive integers. Does a/b/c always equal a/(b * c) with C# integer arithmetic? For me, in C# it looks like:

int a = 5126, b = 76,          


        
6条回答
提交回复
热议问题