2819: 数字反转(python) 摘要:解题思路:注意事项:参考代码:n = int(input()) if n < 0: print("-",end = "") n = -n n = str(n)[::-1] …… 题解列表 2023年02月21日 0 点赞 0 评论 128 浏览 评分:0.0
2819: 数字反转 摘要:参考代码:n = input() if n[0] == '-': print('-' + str(int(n[1:][::-1]))) else: …… 题解列表 2024年03月17日 0 点赞 0 评论 90 浏览 评分: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