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

牛牛的二三七整除

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");
        }
    }
}

全部评论

相关推荐

政委qqq:这道题在算法竞赛里唯一考的就是高精度,但是只能难住C++这类语言,Python直接a+b秒天秒地
点赞 评论 收藏
分享
评论
3
收藏
分享

创作者周榜

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