51nod1413 权势二进数
Posted gcyyzf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51nod1413 权势二进数相关的知识,希望对你有一定的参考价值。
一道水的不能再水的题目
#include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; inline int read(){ int x=0,f=1,ch=getchar(); while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();} while(ch>=‘0‘&&ch<=‘9‘){x=x*10+ch-‘0‘;ch=getchar();} return x*f; } int main(){ int n=read(),ans=0; while(n) ans=max(ans,n%10),n/=10; printf("%d ",ans); return 0; }
以上是关于51nod1413 权势二进数的主要内容,如果未能解决你的问题,请参考以下文章