標題:
204-公倍數計算
[打印本頁]
作者:
許承鴻
時間:
2018-6-19 18:53
標題:
204-公倍數計算
import java.util.*;
class JPD02 {
static Scanner input = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
}
public static void test() {
...
}
}
作者:
張閎鈞
時間:
2018-6-19 19:07
import java.util.*;
class JPA01 {
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");
}
}
}
複製代碼
作者:
巫沛庭
時間:
2018-6-19 19:13
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");
}
}
}
複製代碼
作者:
巫晉宇
時間:
2018-6-19 19:17
import java.util.Scanner;
public class JPA01 {
static Scanner o= new Scanner(System.in);
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
test();
test();
}
private static void test() {
// TODO 自動產生的方法 Stub
System.out.print("input:");
int u=o.nextInt();
if( u%9==0 && u%5==0)
{
System.out.println("yes");
}
else
{
System.out.println("no");
}
}
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2