返回列表 發帖

[模擬考] TQC+ 204

完成" TQC+ 204 "題目

  1. import java.util.*;
  2. class JPA02 {
  3.     static Scanner input = new Scanner(System.in);
  4.     public static void main(String[] args) {
  5.         test();
  6.         test();
  7.     }
  8.   
  9.     public static void test() {
  10.         System.out.println("Input:");
  11.         int x = input.nextInt();
  12.         if(x%5==0 && x%9==0)
  13.         {
  14.                 System.out.println("Yes");
  15.         }
  16.         else
  17.         {
  18.                 System.out.println("NO");
  19.         }
  20.     }
  21. }
複製代碼

TOP

  1. import java.util.*;
  2. class JPA02 {
  3.     static Scanner input = new Scanner(System.in);
  4.     public static void main(String[] args) {
  5.         test();
  6.         test();
  7.     }
  8.   
  9.     public static void test() {
  10.         System.out.println("Input :");
  11.         int num = input.nextInt();
  12.         
  13.         if(num/5  ==0 && num/9 ==0)
  14.                 System.out.println("Yes");
  15.         else
  16.                 System.out.println("No");
  17.     }
  18. }
複製代碼

TOP

返回列表