标签:blog 情况 using namespace for 需要 code include 答案
本来刚开始还是想用每一位 -1的个数 然后再乘以10 不断累加
后来发现 完全不是这回事啊 因为本身就是0 和 1 所以只要记录出现的最大的数字 就是答案 因为 n >= 1
// 所以不需要考虑 0 也是1的情况
#include<bits/stdc++.h> using namespace std; char s[20]; int main() { int res =0; cin >>s; int l=strlen(s); for(int i=0;i<l;i++) { res = max(res,s[i]-‘0‘); } cout<<res<<endl; }
标签:blog 情况 using namespace for 需要 code include 答案
原文地址:http://www.cnblogs.com/Draymonder/p/7407078.html