题解 | #单词倒排#

单词倒排

https://www.nowcoder.com/practice/81544a4989df4109b33c2d65037c5836

#include<stdio.h>
#include<stdlib.h>

int main(){
    char str[100][22];//单词倒排必须是二位数组,第一个是单词的序号,第二个事单词本身的内容
    int i = 0;
    int x;
    while(1){
        x = scanf("%[a-z|A-Z]",str[i]);
        if(getchar()=='\n') break;//这里表示读到\n就结束
        if(x) i++;
    }
    for(int j=i;j>=0;j--){
        printf("%s ",str[j]);
    }
    return 0;
}

全部评论

相关推荐

joe2333:怀念以前大家拿华为当保底的日子
点赞 评论 收藏
分享
无敌虾孝子:喜欢爸爸还是喜欢妈妈
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务