与2无关的数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define f(a) ((i/1000%10!=2&&i/100%10!=2&&i/10%10!=2&&i%10!=2)?(1):…… 题解列表 2019年01月15日 0 点赞 0 评论 380 浏览 评分: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 "stdio.h" int main() { int i,sum = 0,N; int b,s,g; scanf("%d",&N); for…… 题解列表 2020年02月13日 0 点赞 0 评论 246 浏览 评分:0.0
与2无关的数 (C语言代码) 摘要:解题思路:这个题解可以算任意位数的数 是不是与2有关 从而求和。依次计算这个数各位数分别是多少,计算这个数的位数为y++,这个在判断是不是2之前++,如果是2.break。在break语句之后,c++…… 题解列表 2018年08月29日 0 点赞 0 评论 628 浏览 评分:0.0
。。简化了一下。。:与2无关的数 (C语言代码) 摘要:#include<stdio.h> int main() { int n,i,sum,k; scanf("%d",&n); for(sum=0,i=1;i<=n;i++) { …… 题解列表 2019年02月23日 1 点赞 0 评论 777 浏览 评分: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
与2无关的数 -题解(C语言代码) 摘要:解题思路:注意事项:题目的要求为不管是个位、十位、百位上的数字都不能为2 还有 i 要从1开始而不是0 参考代码:#include <stdio.h> int main…… 题解列表 2021年02月07日 0 点赞 0 评论 122 浏览 评分:0.0
与2无关的数 -题解(C++代码) 摘要:```cpp #include #include using namespace std; bool f(string s){ int b; if((b=s.find(…… 题解列表 2020年03月28日 0 点赞 0 评论 293 浏览 评分:0.0
与2无关的数 (C语言代码) 摘要:解题思路:注意事项:参考代码: 超级简单的写法#include<stdio.h>int … 题解列表 2018年09月06日 0 点赞 0 评论 450 浏览 评分:0.0
与2无关的数 -题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int n; int sum=0; cin>>n; …… 题解列表 2020年05月08日 0 点赞 0 评论 352 浏览 评分:0.0