问: c#如何做除法,5/2=3,3/2=2 ?
答:  int a = 3;
        int b = 2;
        int c = (int)Math.Ceiling((double)a / b);

相关文章: