题解 | #数字颠倒#

数字颠倒

http://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe

按照题目要求,输入是一个int型的变量,循环获取其最低位后转成字符加到字符串str中,最后输出str

#include <iostream>
#include <stdio.h>
#include <string>
using namespace std;

void fun(int n)
{
    string str;
    while(n)
    {
        str += (n%10)+'0';
        n /= 10;
    }

    cout << str << endl;
}

int main()
{
    int n;
    while(scanf("%d", &n) != EOF)
    {
        fun(n);
    }
    return 0;
}
全部评论

相关推荐

10-21 23:48
蚌埠坦克学院
csgq:可能没hc了 昨天一面完秒挂
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务