题解 2819: 数字反转

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

筛选

新手的笨方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>intmain(){&nbsp;&nbsp;intn;&……

编写题解 2819: 数字反转

摘要:解题思路:注意事项:参考代码:#includeusingnamespacestd;intmain(){intn,m=0;cin>>n;while(n){m=m*10+n%10;//每次取n……

C语言简便易懂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){&nbsp;&nbsp;&nbsp;&nbsp;intn,s=0;&am……

数字反转 (Java)

摘要:import&nbsp;java.util.Scanner;public&nbsp;class&nbsp;Main&nbsp;{public&nbsp;stat……

2819: 数字反转(python)

摘要:解题思路:注意事项:参考代码:n&nbsp;=&nbsp;int(input())if&nbsp;n&nbsp;<&nbsp;0:&nbsp;&a……

2819: 数字反转

摘要:解题思路:注意事项:参考代码:a&nbsp;=&nbsp;input()a&nbsp;=&nbsp;a[::-1]&nbsp;&nbsp;#&n……

数字反转-常规解法

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

数字反转(简单思路)

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

比较详细的嘞

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