package test; import java.util.Scanner; public class test1{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); System.out.println("输入被除数与除数:"); int a = sc.nextInt(); int b = sc.nextInt(); //定义商数为n int n = 0; ...