敲七游戏C++(没对的进来) 摘要:解题思路:不对的99%都是漏了带有7的数字首先是7的倍数,n%7就可以得出;个位:只有7且恰好是7的倍数;十位:x7、7x(以下x均表示任意1-9) x7可以求末尾就行n%10=…… 题解列表 2022年05月10日 0 点赞 0 评论 1135 浏览 评分:6.8
1223一行解(Python) 摘要:注意事项:set用于数据清洗(集合元素的唯一性),取其长度-2即可(因为第一个数从0算起被认为是符合条件的,要去除,直接从1开始算那我也不反对,再减去集合中0的元素,即列表中表示不符合条件的元素)参考…… 题解列表 2022年11月05日 0 点赞 0 评论 122 浏览 评分:9.9
1223: 敲七游戏 摘要:```cpp #include using namespace std; int main() { int n,s=0; cin>>n; for(int i=7;…… 题解列表 2023年01月11日 0 点赞 0 评论 260 浏览 评分:9.9
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
敲七游戏——python 摘要:解题思路:注意事项:参考代码:N = int(input())s = 0for i in range(6,N+1): if i%7 == 0 or '7'in str(i): …… 题解列表 2023年04月01日 0 点赞 0 评论 82 浏览 评分:9.9
c代码记录之敲七游戏-用sprintf函数将整数转成字符串 摘要:sprint函数,向字符串里格式化打印,这里将整数打印到字符串里 sprintf(string,"%d",number) #include #include #in…… 题解列表 2023年12月11日 0 点赞 0 评论 77 浏览 评分:0.0
没事不要乱发明游戏 摘要: #include int main() { int n; while(scanf("%d",&n)!=EOF) { …… 题解列表 2024年03月23日 0 点赞 0 评论 89 浏览 评分:0.0
普通的循环 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2024年04月10日 0 点赞 0 评论 85 浏览 评分: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