题解 2819: 数字反转

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

筛选

题解 2819: 数字反转

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

对题2819:利用函数倒序输出数字

摘要:解题思路:本题要求将输入的数字倒序之后再输出,如果输入的数为0的话,则输出0;如果输入的为其他数字,则倒序再输出。需要注意的是,如果输入数字像2030400之类的,则输出的为40302,倒序之后如果0……

2819: 数字反转

摘要:```c #include int main() { int num,a; scanf("%d",&num); if(num==0) //按照输入的数字……

数字反转 2819:

摘要:解题思路:#include <iostream>using namespace std;int main(){    long long n, s=0;    cin>>n;    while(n) ……

C语言简便易懂

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