题解 | #复制部分字符串#

复制部分字符串

http://www.nowcoder.com/practice/8f5b923683b94e549880e3c8370e3e55

#include <iostream>
using namespace std;

int main() {

    char str[30] = { 0 };
    cin.getline(str, sizeof(str));

    int m;
    cin >> m;

    // write your code here......
    char s[30] = {0};
    int len=0;
    while(str[m-1]!='\0'){
        s[len++]=str[m-1];
        m++;
    }
    s[len]='\0';
    cout<<s<<endl;
    return 0;
}
全部评论

相关推荐

死在JAVA的王小美:哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈,我也是,让我免了一轮,但是硬气拒绝了
点赞 评论 收藏
分享
评论
1
1
分享
牛客网
牛客企业服务