题解 2819: 数字反转

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

筛选

数字反转-常规解法

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

2819: 数字反转

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

2819: 数字反转(python)

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

数字反转 (Java)

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

C语言简便易懂

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

编写题解 2819: 数字反转

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

新手的笨方法

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