题解 | #截取字符串#

截取字符串

http://www.nowcoder.com/practice/a30bbc1a0aca4c27b86dd88868de4a4a

#include<iostream>
using namespace std;
int main()
{
    string s;
    int d;
    while(cin>>s>>d)
    {
        string res;
        int i=0;
        while(d--)
        {
            if(s[i]=='\0')
            {
                break;
            }
            else
            {
                res.push_back(s[i]);
                i++;
            }
        }
        cout<<res<<endl;
    }
    return 0;
}
全部评论

相关推荐

AaronRuan:看到了好多开奖了,不知道为啥自己也有点激动,真的替你们感到高兴啊
点赞 评论 收藏
分享
冷艳的小师弟在看机会:jd测评乱点直接被挂了,哭死~
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务