敲七游戏 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int xt(int x); // 判断数据中是否含7int main(){ int n, i, t = 0; scanf("%d",…… 题解列表 2019年02月19日 0 点赞 0 评论 403 浏览 评分:0.0
敲七游戏-题解(Java代码) 15行!!! 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[]…… 题解列表 2021年02月16日 0 点赞 0 评论 642 浏览 评分:0.0
没事不要乱发明游戏 摘要: #include int main() { int n; while(scanf("%d",&n)!=EOF) { …… 题解列表 2024年03月23日 0 点赞 0 评论 89 浏览 评分:0.0
敲七游戏 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i,n,m,digit,count=0; scanf("%d",&n); f…… 题解列表 2017年12月01日 0 点赞 0 评论 1062 浏览 评分:0.0
1223: 敲七游戏 摘要:解题思路:一行解,融入许多函数,运行很爽。注意事项:参考代码:print(len(set(list(map(lambda x : x+1 if (x % 7 == 0 or '7' i…… 题解列表 2023年01月31日 0 点赞 0 评论 197 浏览 评分:0.0
敲七游戏 (Java代码) 摘要:解题思路:注意事项:参考代码: import java.util.Scanner; public class C1223 { public static void main(String[…… 题解列表 2018年03月19日 1 点赞 0 评论 822 浏览 评分:0.0
方便的find查找 摘要:#include<bits/stdc++.h> using namespace std; int main() { int n,cnt=0; cin>>n; for…… 题解列表 2024年08月01日 0 点赞 0 评论 64 浏览 评分:0.0
敲七游戏,统计于七有关的数的总数 摘要:解题思路:用for输出n以内的数,再拿每一个对7求余,符合条件则记一次。再用while循环统计不能用7整除,但是含有7的数注意事项:用while循环时,符号条件的记得跳出,不然一个数会记好几次;参考代…… 题解列表 2021年09月13日 0 点赞 0 评论 325 浏览 评分:0.0
编写题解 1223: 敲七游戏 摘要:解题思路:注意事项:参考代码:n=int(input()) s=0 for i in range(7,n+1): if i%7==0 or '7' in str(i): …… 题解列表 2022年02月24日 0 点赞 0 评论 220 浏览 评分:0.0
敲七游戏 (C++代码)◑﹏◐ 摘要:解题思路: 感觉,在判断位数是否是含有7的时候大家的方法都一样,我也没有想到什么特殊的方法,只有一位一位的判断....... 就这样参考代码:#include<bits/s…… 题解列表 2018年12月12日 0 点赞 0 评论 551 浏览 评分:0.0