Java是一種十分流行的編程語言,它在日常開發(fā)中有著廣泛的應用。今天我們來學習一下如何用Java求出一個兩位數(shù)的十位與個位的和。
public class Main { public static void main(String[] args) { int num = 56; // 假設當前要求的數(shù)為56 int tenDigit = num / 10; // 計算十位數(shù),即5 int unitDigit = num % 10; // 計算個位數(shù),即6 int sum = tenDigit + unitDigit; // 計算十位與個位的和 System.out.println("十位與個位的和為:" + sum); // 輸出結果 } }
以上就是求出兩位數(shù)十位與個位的和的Java代碼實現(xiàn)。