eg1:Java獲取一個整數的個位上的數(運算符)

Test.javajava package Hcybx; public class Test { public static void main(String[] args) { int integer = 54321; int units = 54321 % 10; // 個位 int tens = 54321 / 10 % 10; // 十位 int hundreds =
相關文章
相關標籤/搜索