算法竞赛入门经典第二版第一章语言篇

java程序1-2计算并输出8/5的值,保留小数点后一位

package 算法经典第二版第一章语言基础篇;

import java.util.Scanner;

public class Merchant {

    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        while (input.hasNext()) {
            int a = input.nextInt();
            int b = input.nextInt();
            if (b == 0) {
                System.out.println("除数不能为0");
            } else {
                double merchant = a/b;
                System.out.printf("%.1f",merchant);
            }
        }
        input.close();
    }

}

你可能感兴趣的:(算法)