题解 1859: 与2无关的数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int main(){ int …… 题解列表 2025年01月24日 0 点赞 0 评论 12 浏览 评分:0.0
注意题目要求 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c=0,d=0,e=0,f=0,sum=0; scanf("%d",&a); …… 题解列表 2024年11月23日 0 点赞 0 评论 91 浏览 评分:0.0
与2无关的数 摘要:参考代码: ```c #include int m(int a) { while(a) { int b=a%10; if(b==2) …… 题解列表 2023年10月27日 0 点赞 0 评论 139 浏览 评分:0.0
1859: 与2无关的数 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; bool func(int i); …… 题解列表 2023年10月08日 0 点赞 0 评论 57 浏览 评分:0.0
与2无关的数 摘要:解题思路:注意事项:n的取值范围为1000以内参考代码:#include<iostream>using namespace std;int main(){ int n,sum=0; cin…… 题解列表 2023年05月11日 0 点赞 0 评论 48 浏览 评分:0.0
与2无关的数——python 摘要:解题思路:注意事项:参考代码:def bxg(n): if '2' in str(n) or n%2 == 0: return 0 else: …… 题解列表 2023年04月05日 0 点赞 0 评论 68 浏览 评分:0.0
1859:与2无关的数 简单好理解的做法 摘要:##### 新手尝试写文章,欢迎指正 ###### 话不多说,直接上代码 #include int main(void){ int n,temp; …… 题解列表 2022年07月12日 0 点赞 0 评论 381 浏览 评分:9.9
1859——————与2无关的数 摘要: n = int(input()) sum = 0 for i in range(n+1): #迭代遍历n if i % 2 != 0 and '2' n…… 题解列表 2022年07月08日 0 点赞 0 评论 133 浏览 评分:8.0
1859: 与2无关的数 摘要:解题思路:判断是否与2有关!注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,s=0; …… 题解列表 2022年07月06日 0 点赞 0 评论 138 浏览 评分:9.9
优质题解 与2无关的数(C语言)(详细解析)(内含两个求位数算法) 摘要:解题思路:核心:写出代码判断某个数能不能被2整除且该数的所有位数上是否含2。注意事项:求解整数各个位数的值的算法用得很多,以后遇到类似的需求可以直接套用。从个位数开始拆分整数的算法:void fuct…… 题解列表 2022年03月17日 0 点赞 0 评论 824 浏览 评分:5.7