题解 1009: [编程入门]数字的处理与判断

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

筛选

麻烦的解法

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

最容易理解的方法

摘要:解题思路:仔细分析我的思路,你会发现一点也不难注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){int a;int b;int c;int d……

c语言简单解法

摘要:解题思路:每次用x%10求出最后以为数字用数组存储,x=x/10;    注意事项:数组中的数式逆序的注意输出的时候别弄反参考代码:#include<stdio.h>int main() {    i……

数字的处理与判断

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……

数字的处理与判断

摘要:#include<stdio.h> #include<math.h>//调用函数 int main() { int n,i,count=0; int a,c,d; int b,f……

数字的处理与判断

摘要:#include<stdio.h> #include<string.h>  //strlen()包含其中 #define MAX 6  //方便修改取值上限 int main() { ……

数字的处理与判断

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