DSTJZ


私信TA

用户名:dotcpp0721777

访问量:9139

签 名:

时间可以解决许多问题

等  级
排  名 48
经  验 12041
参赛次数 13
文章发表 324
年  龄 18
在职情况 学生
学  校 狗熊岭23届毕业生
专  业

  自我简介:


参考代码:

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


 

0.0分

6 人评分

  评论区

  • «
  • »