问题标题: 酷町堂:3735 字符串删除

0
0
已解决
被禁言 姜思远
姜思远
初级光能
初级光能
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <map>
#include <algorithm>
#include <cstring>
#include <cstdlib>
#include <bits/stdc++.h>
using namespace std;
int main()
{
    string s;
    int x,len;
    getline(cin,s);
    cin>>x;
    if(x%2==0)
    {
        cout<<s.erase(0,len/2); 
    }
    else
    {
        cout<<s.erase(len/2,len/2);
    }
    return 0;
}

0分,why


0
已采纳
李泽远
李泽远
高级天翼
高级天翼

输入,求字符串长度。

判断。删除是没问题的。

另外,是cin而不是getline()。

0
0
0
0
0
我要回答