2012年11月7日 星期三

TQC+ JAVA 204

TQC+ JAVA 204 公倍數計算



import java.util.*;
class JPA02 {
    static Scanner input = new Scanner(System.in);
    public static void main(String[] args) {
        test();
        test();
    }

 
    public static void test() {
        System.out.println("Input:");
        int a =input.nextInt();
        if(a%5==0 && a%9==0)
        System.out.println("Yes");
        else
        System.out.println("No");
    }
}

沒有留言:

張貼留言