1009: [编程入门]数字的处理与判断 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2021年07月14日 0 点赞 0 评论 202 浏览 评分:0.0
麻烦的解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,x,t; scanf("%d",&x); if(x/1<1…… 题解列表 2021年09月23日 0 点赞 0 评论 277 浏览 评分:0.0
数字的处理与判断(C语言)简单方法(最笨方法),一看就会 摘要:解题思路:运用两个 for分别将位数和每位上的数求出,然后用数组将每位上的数保存。注意事项:读好题目要求。参考代码:#include <stdio.h>int main(){ int i; …… 题解列表 2021年09月25日 0 点赞 0 评论 219 浏览 评分:0.0
最容易理解的方法 摘要:解题思路:仔细分析我的思路,你会发现一点也不难注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){int a;int b;int c;int d…… 题解列表 2021年10月04日 0 点赞 0 评论 274 浏览 评分:0.0
c语言简单解法 摘要:解题思路:每次用x%10求出最后以为数字用数组存储,x=x/10; 注意事项:数组中的数式逆序的注意输出的时候别弄反参考代码:#include<stdio.h>int main() { i…… 题解列表 2021年10月07日 0 点赞 0 评论 336 浏览 评分:0.0
数字的处理与判断 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2021年10月20日 0 点赞 0 评论 144 浏览 评分:0.0
数字的处理与判断 摘要:#include<stdio.h> #include<math.h>//调用函数 int main() { int n,i,count=0; int a,c,d; int b,f…… 题解列表 2021年10月31日 0 点赞 0 评论 152 浏览 评分:0.0
数字的处理与判断 摘要:#include<stdio.h> #include<string.h> //strlen()包含其中 #define MAX 6 //方便修改取值上限 int main() { …… 题解列表 2021年11月02日 0 点赞 0 评论 178 浏览 评分:0.0
数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>main(){ int a,i,n,k,t; n=0; scanf("%d",&a); t=a;…… 题解列表 2021年11月08日 0 点赞 0 评论 167 浏览 评分:0.0