[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; int b=a;…… 题解列表 2025年09月16日 1 点赞 0 评论 502 浏览 评分:2.0
最简单的处理与判断 摘要:解题思路:发现别人的都好复杂,决定自己写一个,一个条件判断,一个计算长度函数,二个循环注意事项:慢慢打磨,寻最简解法参考代码:#include<stdio.h>#include<st…… 题解列表 2025年09月18日 8 点赞 0 评论 1043 浏览 评分:10.0
计算数字位数and逆序和顺序输出 摘要:#include<stdio.h>#include<math.h>int main(){ int n, m, y, i, j, k = 1; …… 题解列表 2025年10月09日 2 点赞 0 评论 972 浏览 评分:4.0
1009: 数字的处理与判断 摘要:#include<stdio.h>int main(){ int a, b, c, x = 0; int n = 0…… 题解列表 2025年11月19日 0 点赞 0 评论 106 浏览 评分:10.0
[编程入门]数字的处理与判断 摘要:解题思路:注意事项:看网上的那些答案有些太高级不是很好理解,现在给出两个初学就能做的答案代码,方便理解一下。参考代码:第一种(不使用数组方法):#include <stdio.h>int …… 题解列表 2025年11月28日 2 点赞 0 评论 27 浏览 评分:0.0