2818: 分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a; cin>>a; …… 题解列表 2024年01月16日 0 点赞 0 评论 63 浏览 评分:0.0
题解 2818: 分离整数的各个数位(十分硬核) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ long long n; cin>>n; whil…… 题解列表 2024年01月16日 0 点赞 0 评论 60 浏览 评分:0.0
题解 2818: 分离整数的各个数位 摘要:解题思路:首先读取输入的整数 n。使用循环,当 n 不为 0 时执行以下步骤。在循环中,将 n 对 10 取余数,得到当前的个位数字。输出该数字,并在后面加上一个空格。将 n 除以 10,去掉已经处理…… 题解列表 2024年01月16日 0 点赞 0 评论 116 浏览 评分:6.0
分离整数的各个数位 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>int main(){ int a; int t; scanf("%d",&a); while(a>0){ …… 题解列表 2024年01月27日 0 点赞 0 评论 120 浏览 评分: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
题解 2818: 分离整数的各个数位 c++ 摘要:解题思路:自己想注意事项:别抄我的,抄我的人我诅咒他电脑10秒关机参考代码:#include<bits/stdc++.h>#include<windows.h>using namespace std;…… 题解列表 2024年02月26日 0 点赞 0 评论 134 浏览 评分: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
极致简约版 2818: 分离整数的各个数位 摘要:解题思路: 注意事项:参考代码:print(" ".join(input()[::-1]))…… 题解列表 2024年03月17日 0 点赞 0 评论 202 浏览 评分:9.9
编写题解 2818: 分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){long long a; cin>>a;while(a){co…… 题解列表 2024年05月26日 0 点赞 0 评论 87 浏览 评分:0.0