题解 | #牛牛的二三七整除#

牛牛的二三七整除

http://www.nowcoder.com/practice/b2cf0b791245436f8f0591ae9f4c664f

import java.util.Scanner;
public class Main{
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int num = scanner.nextInt();
        if(num % 2 == 0){
            System.out.print(2 + " ");
        }
        if(num % 3 == 0){
            System.out.print(3 + " ");
        }
        if(num % 7 == 0){
            System.out.print(7 + " ");
        }
        if(num % 2 != 0 && num % 3 != 0 && num % 7 != 0){
            System.out.print("n");
        }
    }
}

全部评论

相关推荐

11-21 14:37
江苏大学 Java
点赞 评论 收藏
分享
牛客41406533...:回答他在课上学,一辈子待在学校的老教授用三十年前的祖传PPT一字一句的讲解,使用谭浩强红皮书作为教材在devc++里面敲出a+++++a的瞬间爆出114514个编译错误来学这样才显得专业
点赞 评论 收藏
分享
评论
3
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务