题解 1859: 与2无关的数

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

筛选

题解 1859: 与2无关的数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int main(){ int ……

注意题目要求

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c=0,d=0,e=0,f=0,sum=0;    scanf("%d",&a);    ……

与2无关的数

摘要:参考代码: ```c #include int m(int a) { while(a) { int b=a%10; if(b==2) ……

与2无关的数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,i,sum = 0;    scanf("%d",&n);    if(n%2==0)    ……

与2无关的数

摘要:解题思路:for循环注意事项:不要想的太复杂,没那么难!参考代码:#include<stdio.h>int main(){    int i,n,s=0;    scanf("%d",&n);    ……

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

摘要:解题思路:注意事项:题目的要求为不管是个位、十位、百位上的数字都不能为2                还有 i 要从1开始而不是0 参考代码:#include <stdio.h> int main……