题解 | #牛牛的二三七整除#
牛牛的二三七整除
http://www.nowcoder.com/practice/b2cf0b791245436f8f0591ae9f4c664f
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
if(n % 2 == 0){
System.out.print(2 + " ");
}
if(n % 3 == 0){
System.out.print(3 + " ");
}
if(n % 7 == 0){
System.out.print(7 + " ");
}
if(n % 2 != 0 && n% 3 != 0 && n % 7 != 0){
System.out.print("n");
}
}
}

查看18道真题和解析

