码迷,mamicode.com
首页 > 其他好文 > 详细

P1035 题解

时间:2018-10-01 19:58:14      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:std   include   color   using   space   turn   精度   pre   div   

#include<iostream>
using namespace std;
int main()
{
int a,i=0;
cin>>a;
while(a!=0){i=i*10+a%10;a/=10;}//精度重要,但这种方法用不着精度
 cout<<i;
 return 0;     
    } 

 

P1035 题解

标签:std   include   color   using   space   turn   精度   pre   div   

原文地址:https://www.cnblogs.com/wangshengjun/p/luoguP1035.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!