编写题解 2819: 数字反转 摘要:解题思路:注意事项:参考代码:n=input()fn=str(abs(int(n)))#取整+绝对值+字符串,避免‘-’的影响r=0#反转新数for j in range(len(fn)-1,-1,-…… 题解列表 2024年03月02日 0 点赞 0 评论 82 浏览 评分:0.0
2819: 数字反转 摘要:参考代码:n = input() if n[0] == '-': print('-' + str(int(n[1:][::-1]))) else: …… 题解列表 2024年03月17日 0 点赞 0 评论 90 浏览 评分:0.0
2819: 数字反转 摘要:```c #include int main() { int num,a; scanf("%d",&num); if(num==0) //按照输入的数字…… 题解列表 2024年04月19日 0 点赞 0 评论 115 浏览 评分:0.0
编写题解 2819: 数字反转 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){long long n,m=0; cin>>n;while(n…… 题解列表 2024年05月14日 0 点赞 0 评论 202 浏览 评分:0.0
2819: 数字反转 摘要:解题思路:注意事项:参考代码:n = int(input())if n >= 0: s = str(n)[::-1] print(int(s))else: n = -n s =…… 题解列表 2024年07月30日 0 点赞 0 评论 70 浏览 评分:0.0
对题2819:利用函数倒序输出数字 摘要:解题思路:本题要求将输入的数字倒序之后再输出,如果输入的数为0的话,则输出0;如果输入的为其他数字,则倒序再输出。需要注意的是,如果输入数字像2030400之类的,则输出的为40302,倒序之后如果0…… 题解列表 2024年09月10日 0 点赞 0 评论 143 浏览 评分:9.9
编写题解 2819: 数字反转(while循环)超简单方法! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,f=0; scanf("%d",&n); while(n!=0){ f=f*…… 题解列表 2024年11月10日 0 点赞 0 评论 154 浏览 评分:9.9
b每次左移一位,为a的个位数求模留出空间 摘要:解题思路:建立新变量b=0。由于b的值是累加不断更新,因此初始值需要是0。循环逻辑:b每次左移一位,为a的个位数求模留出空间。数值更新:a每次同样左移,不断保存前一位的值,回溯到上面的循环里。参考代码…… 题解列表 2024年12月06日 0 点赞 0 评论 57 浏览 评分:0.0
2819: 数字反转题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long n,sum=0; cin &…… 题解列表 2025年01月11日 0 点赞 0 评论 53 浏览 评分:0.0
题解 2819: 数字反转 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ long long n,sum=…… 题解列表 2025年01月12日 0 点赞 0 评论 34 浏览 评分:0.0