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

牛牛的二三七整除

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

全部评论

相关推荐

_mos_:我以为手抄报简历就已经很顶了,没想到还有表格简历
点赞 评论 收藏
分享
白火同学:大二有这水平很牛了,可以适当对关键信息加粗一点,比如关键技术、性能指标之类的。
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
3
收藏
分享

创作者周榜

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