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

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

筛选

C++利用指针重复遍历输出

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>using namespace std;int main(){    char str[20] =……

数字的处理与判断

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

关于数字的处理与判断

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){   string n;    cin >> n;    in……

运用字符串求解

摘要:解题思路:  用字符串的特点,  使输入的数字转化为字符串存储,   再用length函数限制输入位数,   最后用字符串下标输出注意事项: 参考代码:#include<iostream> usin……