標題:
[模擬考] TQC+ 204
[打印本頁]
作者:
張健勳
時間:
2017-6-10 12:18
標題:
[模擬考] TQC+ 204
完成" TQC+ 204 "題目
作者:
王彥甯
時間:
2017-6-10 12:19
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 x = input.nextInt();
if(x%5==0 && x%9==0)
{
System.out.println("Yes");
}
else
{
System.out.println("NO");
}
}
}
複製代碼
作者:
張健勳
時間:
2017-6-10 12:23
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 num = input.nextInt();
if(num/5 ==0 && num/9 ==0)
System.out.println("Yes");
else
System.out.println("No");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2