用while循环,卡住终止点是更新后的a=0 ;不断用10求模,不断更新,循环输出 摘要:解题思路:1.用while循环,卡住终止点是更新后的a=02.不断用10求模,不断更新,循环输出参考代码:#include<iostream> using namespace std; int m…… 题解列表 2024年12月05日 2 点赞 0 评论 251 浏览 评分:10.0
分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int x,a; cin >> x; while(…… 题解列表 2023年07月03日 0 点赞 0 评论 126 浏览 评分:9.9
暴力解法,最大限度减低难度 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,ge; scanf("%d",&n);//遍历把每一位个位数字拿出来 for(in…… 题解列表 2023年03月06日 0 点赞 0 评论 182 浏览 评分:9.9
分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; while…… 题解列表 2023年07月12日 0 点赞 0 评论 74 浏览 评分:9.9
分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int k; cin >> k; int n = k;//保留k的数值…… 题解列表 2023年04月05日 0 点赞 0 评论 132 浏览 评分:9.9
题目 2818: 分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int x,y; x=n; …… 题解列表 2022年11月26日 0 点赞 0 评论 324 浏览 评分:9.9
分离整数的各个数位 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int x,a; cin >> x; w…… 题解列表 2023年07月20日 0 点赞 0 评论 96 浏览 评分:9.9
极致简约版 2818: 分离整数的各个数位 摘要:解题思路: 注意事项:参考代码:print(" ".join(input()[::-1]))…… 题解列表 2024年03月17日 0 点赞 0 评论 190 浏览 评分:9.9
用数组的方法——简单且粗暴 摘要:解题思路:换个思路,输入的是一串字符。注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[10]; int i;…… 题解列表 2022年12月31日 0 点赞 2 评论 293 浏览 评分:9.9
2818: 分离整数的各个数位 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n;//定义 cin>>n; while(n>0) …… 题解列表 2023年07月12日 0 点赞 0 评论 132 浏览 评分:9.9