题解 1859: 与2无关的数

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

筛选

与2无关的数

摘要:解题思路:注意事项:n的取值范围为1000以内参考代码:#include<iostream>using namespace std;int main(){    int n,sum=0;    cin……

1859: 与2无关的数

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

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

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

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

摘要:不会的小伙伴来看看哦!:smile: 注意看清楚题目的要求! 首先求出百位、十位、个位中是否为2,再次要求是找奇数。并且求和。 #include using namespac……

1859: 与2无关的数

摘要:解题思路:判断是否与2有关!注意事项:参考代码:#include<iostream> using namespace std; int main() {     int a,s=0;    ……