这是超级简单的数学,但我不能使它运作。我试图在动态int中存储的每100个中为我的int添加1。
例如,myInt = 350
然后是intNumber = 3
。
或
myInt = 570
然后intNumber = 5
澄清我不想要余数,因此我不想要x/100
我知道它类似于但显而易见的不是:
for (int i = 0; i < 100; i++)
{
}
答案 0 :(得分:0)
这很简单:
int myInt = 350;
int intNumber = myInt / 100; // will be 3