分离整数的各个数位 2818 摘要:解题思路:#include <iostream>using namespace std;int main(){ long long n; cin>>n; while(n) { …… 题解列表 2024年01月16日 0 点赞 0 评论 67 浏览 评分:0.0
分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void func(long long n);int main() { long long a; scanf("%lld", &a…… 题解列表 2023年07月24日 0 点赞 0 评论 144 浏览 评分:0.0
分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; while…… 题解列表 2023年07月12日 0 点赞 0 评论 101 浏览 评分:0.0
2818: 分离整数的各个数位 摘要:``` #include using namespace std; int main(){ int a,b=0; cin>>a; if( a%10==0 ){ a=a/10; …… 题解列表 2023年11月13日 0 点赞 0 评论 129 浏览 评分:0.0
旧物有情 #2818: 分离整数的各个数位 字符串翻转法 和 模拟法 摘要:[TOC] 这道题目的数据范围比较弱,不存在类似于10000 这种需要我们考虑前导0的问题 不过大家可以思考一下如何去除前导0 # 字符串翻转法 ``` #include u…… 题解列表 2024年10月17日 0 点赞 0 评论 60 浏览 评分:0.0
编写题解 2818: 分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n; cin>>n; …… 题解列表 2024年02月26日 0 点赞 0 评论 88 浏览 评分:0.0
分离整数的各个数位 摘要:解题思路:注意事项:参考代码:int main(){ int n,s=0; scanf("%d",&n); for(int i=n;i!=0;i/=10) { …… 题解列表 2023年12月13日 0 点赞 0 评论 220 浏览 评分:0.0
字符串倒序输出 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main(){ char str[100]; gets(str); int len=str…… 题解列表 2024年11月27日 0 点赞 1 评论 133 浏览 评分:0.0
编写题解 2818: 分离整数的各个数位 摘要:解题思路:注意事项:参考代码:n=input()for i in range(len(n)-1,-1,-1): print(n[i],end=' ')…… 题解列表 2024年03月02日 0 点赞 0 评论 83 浏览 评分:0.0