题解 | #参数解析#

参数解析

https://www.nowcoder.com/practice/668603dc307e4ef4bb07bcd0615ea677

#include <stdio.h>
#include <string.h>
int main() {
    char str[1001];
    while (fgets(str,sizeof(str),stdin)) { // 注意 while 处理多个 case
        char str_ans[1001];
        memset(str_ans,0,sizeof(str_ans));
        int j = 0;
        int index = 0;
        int count = 1;
        int len = strlen(str);
        str[len] = '\0';
        for(int i = 0;i <= len;i++)
        {
            if((str[i] != ' '|| index%2 == 1) && str[i] != '"' )
            {
                str_ans[j++] = str[i];
            }
            else if(str[i] == '"')
            {
                index ++;//奇数表示忽略空格,偶数表示计算空格
            }
            else if((str[i] == ' ' || str[i] =='\0') && index %2 == 0)
            {
                //printf("%s\n",str_ans);
                count++;
                str_ans[j++] = '\n';
                //memset(str_ans,0,sizeof(str_ans));
                //j = 0;
            }
        }
        //printf("%s\n", str);
        printf("%d\n",count);
        printf("%s\n", str_ans);
    }
    return 0;
}

也就轻轻松松,省事

全部评论

相关推荐

10-07 20:48
门头沟学院 Java
不敢追175女神:可能是实习上着班想到后面还要回学校给导师做牛马,看着身边都是21-25的年纪,突然emo了了
点赞 评论 收藏
分享
totoroyyw:千年老妖😂
投递华为等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务