题解 1859: 与2无关的数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

与2无关的数 (C语言代码)

摘要:解题思路:注意看清楚题目,找出与2相关的数,或者找出与2无关的数求和即可。注意事项:参考代码:#include <stdio.h> int main() {     int n,sum=0,i,……

与2无关的数 (C语言代码)KE AC

摘要:解题思路:首先在遍历上,只遍历奇数,之间排除能被2整除的数,然后就是取每一位上的数看是否为2;细节再代码中注意事项:注意fg标志的置零位置,和用一个中间遍历t代替i参考代码:#include <cst……

1859: 与2无关的数

摘要:解题思路:注意事项:参考代码:def num(x):     s = 0     if x%2==0:         s += 1     st = str(x)     

与2无关的数 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int n; int a,b,c……

1859: 与2无关的数

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; bool func(int i); ……