题解 | #挑7#

挑7

https://www.nowcoder.com/practice/ba241b85371c409ea01ac0aa1a8d957b

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNextInt()) { // 注意 while 处理多个 case
            int a = in.nextInt();
            getSevenNum(a);
        }
    }
    public static void getSevenNum(int num) {
        int result = 0;
        for (int i = 1; i <= num; i++) {
            if (i % 7 == 0) {
                //表示7的倍数
                result ++;
            } else {
                if ((i + "").contains("7")) {
                    result ++;
                }
            }
        }
        System.out.println(result);
    }
}

全部评论

相关推荐

2025-11-17 23:00
南昌大学 Java
累死的一条狗:10元一天 0元提成😂
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

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