1009简单易看题解,并注释 摘要:```#include#includeint main(){ char a[6]; scanf("%s",a); //直接用库函数 int …… 题解列表 2025年01月06日 6 点赞 1 评论 1083 浏览 评分:10.0
数字的处理与判断(c++) 摘要:读前注意: 本代码采用C++语言来写,但是并不影响许多只学过C语言的编程新手的阅读,本来C++与C语言基础写法算是大同小异吧,另外,每个要求都已经封装成函数的形式,这样对于读者来说也许会更清晰,…… 题解列表 2022年07月12日 0 点赞 4 评论 816 浏览 评分:9.9
C++[编程入门]数字的处理与判断 摘要:解题思路:用pow函数解决各自输出问题注意事项:参考代码:#include#includeusing namespace std;int main(){ int x; cin>>x; int i=0,…… 题解列表 2021年12月11日 0 点赞 0 评论 629 浏览 评分:9.9
字符串迅速解决 思路简单清晰 摘要:```cpp #include #include #include using namespace std; int main() { string a; cin>>a;/…… 题解列表 2021年05月18日 0 点赞 0 评论 689 浏览 评分:9.9
求一个整数的位数及每一位数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x, sum = 10, a = 1; cin >> x; w…… 题解列表 2021年05月16日 0 点赞 0 评论 622 浏览 评分:9.9
题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:获取数字位数(int ws(int) 实现)获取每一位的数字(int *part(int) 实现)按要求输出(主函数实现)注意事项:A.floor()向下舍入,至于作用,自行实验!B.注意题…… 题解列表 2023年06月22日 0 点赞 0 评论 562 浏览 评分:9.9
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:利用strlen函数求出数组有效大小,即数字位数。再利用swich选择语句根据不同位数来进行输出注意事项:注意加上头文件#include<string.h>#include<iostream…… 题解列表 2023年09月09日 0 点赞 0 评论 384 浏览 评分:9.9
题解—涉及 利用string进行对数字的处理 摘要:### # 首先卖个广告,欢迎关注我的github账号 ##### peach99cpp,里面有个库存储了我的做题笔记和源代码,欢迎加入! #### 题解——关于string解决数字处理问题的…… 题解列表 2021年04月01日 0 点赞 3 评论 454 浏览 评分:9.9
[编程入门]数字的处理与判断 (c++) 摘要:参考代码:#include<iostream>using namespace std;int main(){ int arr[5]; int n; //输入的数 int number = 0;//记录…… 题解列表 2021年03月24日 0 点赞 0 评论 763 浏览 评分:9.9
题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main() { double a; int e; double …… 题解列表 2021年03月17日 0 点赞 0 评论 838 浏览 评分:9.9