第3章:檢測數字

/**
 * 檢測數字。
 * 提示用戶輸入一個整數:
 * 判斷這個整數是否能被5和6整除,或者不能被它們中的任何一個整除,或者只能被其中一個整除。
 */
package Test;

import java.util.Scanner;

public class T312Scanner {
	public static void main(String[] args) {
		Scanner input = new Scanner(System.in);
		System.out.print("Enter a integer: ");
		int number = input.nextInt();
		
		if (number % 5 == 0 && number % 6 == 0)
			System.out.println(number + " is divisible by both 5 and 6!");
		else
			System.out.println((number % 5 == 0 || number % 6 == 0)
					? number + " is divisible by 5 or 6, but not both!"
							: number + " is not divisible by either 5 or 6!");
	}
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章