与2无关的数 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define f(a) ((i/1000%10!=2&&i/100%10!=2&&i/10%10!=2&&i%10!=2)?(1):……
与2无关的数 (C语言代码)
摘要:解题思路:这个题解可以算任意位数的数 是不是与2有关 从而求和。依次计算这个数各位数分别是多少,计算这个数的位数为y++,这个在判断是不是2之前++,如果是2.break。在break语句之后,c++……
1859: 与2无关的数
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<bits/stdc++.h>
using namespace std;
bool func(int i);
……
与2无关的数 -题解(C语言代码)
摘要: #include "stdio.h"
int main()
{
int i,sum = 0,N;
int b,s,g;
scanf("%d",&N);
for……
。。简化了一下。。:与2无关的数 (C语言代码)
摘要:#include<stdio.h>
int main()
{
int n,i,sum,k;
scanf("%d",&n);
for(sum=0,i=1;i<=n;i++)
{
……
与2无关的数 (C语言代码)
摘要:解题思路:注意事项:参考代码: 超级简单的写法#include<stdio.h>int …
与2无关的数——python
摘要:解题思路:注意事项:参考代码:def bxg(n): if '2' in str(n) or n%2 == 0: return 0 else: ……