编辑代码

class Main {
	public static void main(String[] args) {
    
        double i = 6/4;
		System.out.println(Math.ceil(i));
	}
}