Java是一種常用的編程語言,可以用來做很多數學運算,如求兩個數的商和余數。
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("請輸入被除數:"); int a = sc.nextInt(); // 輸入被除數 System.out.print("請輸入除數:"); int b = sc.nextInt(); // 輸入除數 int c = a / b; // 求商 int d = a % b; // 求余數 System.out.println("商為:" + c); System.out.println("余數為:" + d); } }
以上代碼首先導入了java.util包,然后用Scanner類獲取用戶輸入的被除數和除數。然后用變量c存儲被除數除以除數的商,用變量d存儲被除數除以除數的余數。
在運行程序時,控制臺會提示用戶輸入被除數和除數,然后輸出商和余數。
如需獲得更多關于Java編程的知識,請參考相關書籍或在線教程。