请问一下 android 中 各种运算公式 怎么写
// 公式1 : f1(M02) = M02/100%4+1
public int f1(int a) {
int result = a / 100 % 4 + 1;
return result;
}
比如基本运算,还有复杂的怎么写
学知学
相关分类