P1035 题解

Posted wangshengjun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1035 题解相关的知识,希望对你有一定的参考价值。

#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 题解的主要内容,如果未能解决你的问题,请参考以下文章

P1035

P1035 级数求和

P1035 级数求和

P1035 台阶问题二

P1035 级数求和

洛谷——P1035 级数求和