C++:vector容器练习 输入单个字符 感觉实际上比较通用 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std ;int main ( ){&nbs…… 题解列表 2025年03月22日 0 点赞 0 评论 156 浏览 评分:0.0
[编程入门]数字的处理与判断 摘要:```c#include int main() { int x; int arr[5]; int i=0; scanf("%d",&x); …… 题解列表 2025年03月08日 7 点赞 0 评论 601 浏览 评分:0.0
题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:使用string和algorithm中函数即可轻松完成要求注意事项:参考代码:#include <iostream>#include <string>#include…… 题解列表 2025年02月24日 4 点赞 0 评论 585 浏览 评分:0.0
用字符数组做的,简单得感觉像是偷懒,完全不用思考 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(void){…… 题解列表 2025年01月27日 16 点赞 0 评论 892 浏览 评分:10.0
1009题解,用循环做 摘要:解题思路和注意事项:首先要明白每个要求的操作思路,为了清楚点我们直接举具体的数:123第一个要求几位数,那么就是将123除以10,123是三位数字,123能除以10两次,那么将变量count初始化为1…… 题解列表 2025年01月11日 18 点赞 0 评论 1201 浏览 评分:10.0
1009简单易看题解,并注释 摘要:```#include#includeint main(){ char a[6]; scanf("%s",a); //直接用库函数 int …… 题解列表 2025年01月06日 5 点赞 0 评论 664 浏览 评分:0.0
七行代码解决问题 摘要:解题思路:用字符串解决问题注意事项:无参考代码:a=input()print(len(a))for i in range(len(a)): print(a[i],end=" ")print()fo…… 题解列表 2024年12月03日 0 点赞 0 评论 864 浏览 评分:3.5
1009普通解题看看吧 摘要:解题思路:注意事项:注意把整型转换为字符串和l - 1就行了。参考代码:#include<stdio.h>#include<string.h>int main (){ int b; char a[10…… 题解列表 2024年12月01日 1 点赞 0 评论 1244 浏览 评分:10.0
输出个数、各数、逆序 摘要:解题思路:事项:1、循环数个数 2、采用高到低位3、重新提取数字,然后逆序输出就行了参考代码:#include <stdio.h>int main() { int n,a=0; scanf…… 题解列表 2024年11月24日 1 点赞 0 评论 842 浏览 评分:0.0
纯数字处理思路来解决这道题,不使用字符数组 摘要:# 前缀知识 对一个数%10时,可以获取到这个数的个位上的数字,比如12345%10=5,对一个数除以10的倍数,可以消掉多余的数字,比如12345/100=123. **以下的思路都是基于这个原…… 题解列表 2024年11月19日 7 点赞 0 评论 596 浏览 评分:9.9