模拟高精度的除法
import java.util.Scanner;
/***
* 模拟高精度除法
*/
public class Practice07 {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
while (s.hasNext()){
int a=s.nextInt();//被除数
int b=s.nextInt();//除数
int[] num1=new int[100];//存放被除数
int[] num2=new int[100];//存放余数
int[] num3=new int[100];//存放商
num1[0]=a
模拟高精度的除法最先出现在Python成神之路。
共有 0 条评论