Superwen


私信TA

用户名:dotcpp0721896

访问量:458

签 名:

一只努力尝试的小笨鸟

等  级
排  名 3272
经  验 1977
参赛次数 0
文章发表 8
年  龄 0
在职情况 学生
学  校 山西农业大学
专  业

  自我简介:

解题思路:  

注意事项:  利用对数函数(Math.log10()+1 )求数m的位数

参考代码:

import java.util.Scanner;


public class Main {

public static void main(String[] args) {

Scanner scanner = new Scanner(System.in);

while (scanner.hasNext()) {

int m = scanner.nextInt();

int k = scanner.nextInt();

            double shu = 1+Math.log10(m);

int n = 0;

if(m%19==0){

    for(int i=1;i<shu;i++){

        int num = m%10;

        m = m/10;

        if(num==3){

            n+=1;

        }

    }

    if(n==3){

        System.out.println("YES");

    }

    else{

        System.out.println("NO");

    }

}

else{

    System.out.println("NO");

}

    

}

}

}


 

0.0分

0 人评分

  评论区

  • «
  • »