noip2011——普及组——数字反转
Posted Yzyet
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了noip2011——普及组——数字反转相关的知识,希望对你有一定的参考价值。
傻逼题,不讲了。
#include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespace std; int t=1,num=0;char c=getchar(); inline int read(){ while(c>\'9\'||c<\'0\'){if(c==\'-\')t=-1;c=getchar();} while(c>=\'0\'&&c<=\'9\'){num=num*10+c-\'0\';c=getchar();} return num; } int main() { int a=read(),b=0; while(a){ b=b*10+(a%10); a/=10; } printf("%d",b*t); return 0; }
本文由Yzyet编写,网址为www.cnblogs.com/Yzyet。非Yzyet同意,禁止转载,侵权者必究。
以上是关于noip2011——普及组——数字反转的主要内容,如果未能解决你的问题,请参考以下文章