CodeFoeces-258A

题目

原题链接:A. Little Elephant and Bits

题意

给定一串2进制字串,去掉1位保证最大,输出去掉1位后的字串。

代码

#include
using namespace std;
int main() {
    string s;
    int flag=0;
    cin>>s;
    int l=s.size();
    for(int i=0; i

你可能感兴趣的:(CodeFoeces-258A)