此题高手估计都难解答!有定难度!
例如 :
24200 - 2420 =21780
2000 - 200 =1800
可以看出一个规律
一个数减本身除10去整
问:结果等于22000原数多少!
?-?=22000!
[解决办法]
24444?
[解决办法]
public class Test{ public static void main(String[] args) { System.out.println(getBack(43456)); } public static int getBack(int value){ return value *10 / 9 ; }}