与7无关的数(自定义函数) 摘要:参考代码: ```c #include int m(int a)//这个函数是判断它的十进制表示法中某一位上的数字是否为7,感觉放在主函数太挤了,干脆拿出来了 { int b=a,k…… 题解列表 2023年09月13日 0 点赞 0 评论 110 浏览 评分:0.0
2828: 与7无关的数 摘要:参考代码:n = int(input()) arr = [] for i in range(1, n + 1): if i % 7 == 0 or ''.join(str…… 题解列表 2024年03月17日 0 点赞 0 评论 177 浏览 评分:0.0
2828: 与7无关的数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int t=0,i,n,sum=0; scanf("%d",&n);…… 题解列表 2024年11月07日 0 点赞 0 评论 71 浏览 评分:0.0
编写题解 2828: 与7无关的数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool bsq(int n) { for(int i=1;i<=n;i++) { …… 题解列表 2024年05月26日 0 点赞 0 评论 53 浏览 评分:0.0
(c语言)详细解读 摘要:解题思路:注意事项:参考代码: #include"stdio.h"void main(){ int s7[100]={}; //不是与7有关的记录在…… 题解列表 2023年01月03日 0 点赞 0 评论 110 浏览 评分:0.0
与7无关的数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h> int main(){ int n,num=0 ; int i; int sum=0; int …… 题解列表 2023年02月13日 0 点赞 0 评论 153 浏览 评分:0.0
编写题解 2828: 与7无关的数 摘要:解题思路:注意事项:参考代码:n=int(input())sum=0for i in range(1,n+1): if i%7!=0 and i%10!=7 and i//10!=7: …… 题解列表 2024年03月04日 0 点赞 0 评论 137 浏览 评分:0.0
2828: 与7无关的数 摘要:``` #include using namespace std; int n,sum,ans; int main(){ cin>>n; for( int i=1;i…… 题解列表 2023年11月20日 0 点赞 0 评论 67 浏览 评分:0.0
2828: 与7无关的数 摘要:解题思路:注意事项:参考代码:n = int(input()) sum1 = 0 for x in range(1, n + 1): if x % 7 != 0 and "7" not …… 题解列表 2024年03月19日 0 点赞 0 评论 100 浏览 评分:0.0
与7无关的数(清晰明了) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,t,sum=0; scanf("%d",&n); for(i=1;i<=n;i…… 题解列表 2024年12月10日 0 点赞 0 评论 120 浏览 评分:0.0