我有一個int,範圍從0-99
。我需要得到兩個單獨的整數,每個整數都包含一個數字。我無法弄清楚如何得到第二位數字。 (從64
如何獲得6
)這是我的代碼:從int獲得第二個數字
public int getNumber(int pos, boolean index){//if index = 1 - first digit, if index = 0 - second digit
int n;
if(index){
n = pos%10;
}else{
if(pos<10){
n=0;
}else{
//????
}
}
return n;
}
你也將需要初始化n的INT N = 0; ...它不是答案的一部分,但會有所幫助 – Akshay