题解 2819: 数字反转

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

新手的笨方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int n;    scanf("%d",&n);    if(n<0) ……

编写题解 2819: 数字反转

摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int n,m=0; cin>>n; while(n){ m=m*10+n%10;//每……

C语言简便易懂

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){     int n,s=0;     scanf("%d",&n);     while(n!=0)     ……

数字反转 (Java)

摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Scann……

2819: 数字反转(python)

摘要:解题思路:注意事项:参考代码:n = int(input()) if n < 0:     print("-",end = "")     n = -n n = str(n)[::-1] ……

2819: 数字反转

摘要:解题思路:注意事项:参考代码:a = input() a = a[::-1]  # 字符串逆序 if a[len(a)-1] == &#39;-&#39;:  # 如果输入负数     a = ……

数字反转-常规解法

摘要:具体看代码注释即可思路:先对x取正,统一处理;再反序读入到数组中,最后去除0输出即可参考代码://数字反转  #include <bits/stdc++.h> using namespace st……

数字反转(简单思路)

摘要:解题思路:用long long输入即可,用数组判断前导0注意事项:注意输入会有负数,则输出需要“-”注意下面的for循环a[-1]=0的用法参考代码:#include<bits/stdc++.h>us……

比较详细的嘞

摘要:解题思路:用整数类型来解,可以有效规避删0问题,注意添加负号问题不大的,字符串来搞也可以,就是注意删0问题注意事项:9000000,0,12,-203,-32,-200测试数据看看参考代码:N=inp……