最朴实无华(笨)的解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,wei; int ge,shi,bai,qian,wan; scanf("%d",…… 题解列表 2021年08月11日 0 点赞 0 评论 275 浏览 评分:9.9
1009: 数字的处理与判断(最易理解的方法) 摘要:解题思路: 解答该题可以运用strlen方法,这里介绍最简单最容易理解的方法,适合编程小白开发思维逻辑。scanf("%d",&x);y=x;z=x;这里先键盘输入x,并将x的值赋给y和z,后续…… 题解列表 2021年08月17日 0 点赞 0 评论 310 浏览 评分:8.0
[编程入门]数字的处理与判断 摘要:解题思路: 看注释即可。注释是本人解决本题的心路历程。(有点杂,凑合看吧。)注意事项:参考代码:#include<stdio.h> int main() { int x1,…… 题解列表 2021年08月28日 0 点赞 2 评论 126 浏览 评分:9.9
数字的处理与判断 摘要:解题思路:求位数 用循环递减 空格分开 递归每次去掉最高位 逆序 递归输出最后位 然后除最后位注意事项:工具箱参考代码:#include<s…… 题解列表 2021年09月06日 0 点赞 0 评论 185 浏览 评分:9.9
[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ int n; scanf("%d",&n); int l[5]={0}; i…… 题解列表 2021年09月12日 0 点赞 0 评论 162 浏览 评分:9.9
麻烦的解法 摘要:解题思路:注意事项:参考代码:#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 评论 164 浏览 评分:0.0
数字的处理与判断(C语言)简单方法(最笨方法),一看就会 摘要:解题思路:运用两个 for分别将位数和每位上的数求出,然后用数组将每位上的数保存。注意事项:读好题目要求。参考代码:#include <stdio.h>int main(){ int i; …… 题解列表 2021年09月25日 0 点赞 0 评论 164 浏览 评分:0.0
最容易理解的方法 摘要:解题思路:仔细分析我的思路,你会发现一点也不难注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){int a;int b;int c;int d…… 题解列表 2021年10月04日 0 点赞 0 评论 159 浏览 评分:0.0
c语言简单解法 摘要:解题思路:每次用x%10求出最后以为数字用数组存储,x=x/10; 注意事项:数组中的数式逆序的注意输出的时候别弄反参考代码:#include<stdio.h>int main() { i…… 题解列表 2021年10月07日 0 点赞 0 评论 216 浏览 评分:0.0