標題:
205-倍數判斷
[打印本頁]
作者:
許承鴻
時間:
2018-6-19 19:13
標題:
205-倍數判斷
import java.util.*;
public class JPA02 {
static Scanner input = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
static void test() {
...
}
}
作者:
巫沛庭
時間:
2018-6-19 19:30
本帖最後由 巫沛庭 於 2018-6-19 19:37 編輯
import java.util.*;
public class JPA02 {
static Scanner input = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
static void test() {
System.out.println("Enter an integer : ");
int x=input.nextInt();
if(x%2==0 && x%3==0)
{
System.out.println(x+"是2,3,6的倍數");
}
else if(x%2==0)
{
System.out.println(x+"是2的倍數");
}
else if(x%3==0)
{
System.out.println(x+"是3的倍數");
}
else{
System.out.println(x+"不是2,3,6的倍數");
}
}
}
複製代碼
作者:
張閎鈞
時間:
2018-6-19 19:33
import java.util.Scanner;
public class OP321 {
static Scanner input = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
public static void test() {
System.out.println("enter an integer:");
int a=input.nextInt();
if(a%2==0&&a%3==0&&a%6==0)
{
System.out.println(a+"是2、3、6的倍數");
}
else if(a%2==0&&a%3==0)
{
System.out.println(a+"是2,3的倍數");
}
else if(a%2==0)
{
System.out.println(a+"是2的倍數");
}
else if(a%3==0)
{
System.out.println(a+"是3的倍數");
}
else
{
System.out.println(a+"不是2、3、6的倍數");
}
}
}
複製代碼
作者:
張閎鈞
時間:
2018-6-19 19:36
import java.util.Scanner;
public class OP321 {
static Scanner input = new Scanner(System.in);
public static void main(String[] args) {
test();
test();
test();
test();
}
public static void test() {
System.out.println("enter an integer:");
int a=input.nextInt();
if(a%2==0&&a%3==0)
{
System.out.println(a+"是2,3、6的倍數");
}
else if(a%2==0)
{
System.out.println(a+"是2的倍數");
}
else if(a%3==0)
{
System.out.println(a+"是3的倍數");
}
else
{
System.out.println(a+"不是2、3、6的倍數");
}
}
}
複製代碼
作者:
巫晉宇
時間:
2018-6-19 19:43
import java.util.Scanner;
public class JPA01 {
static Scanner o= new Scanner(System.in);
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
test();
test();
test();
test();
}
private static void test() {
// TODO 自動產生的方法 Stub
System.out.print("Enter an integer:");
int u=o.nextInt();
if( u%2==0 && u%3==0 )
{
System.out.println( u+"是2、3、6的倍數");
}
if( u%2!=0 && u%3==0 )
{
System.out.println( u+"是3的倍數");
}
if( u%2==0 && u%3!=0 )
{
System.out.println( u+"是2的倍數");
}
else if(u%2!=0 && u%3!=0)
{
System.out.println(u+"不是2、3、6的倍數");
}
}
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2