思路

使用了scanf函数的读入指定字符集的功能,只读入大小写字母, 遇到非字母的就保存并继续读取,直到读到\n结束,最后倒序输出。

Answer

#include<stdio.h>

int main()
{
    
    char str[100][22];
    int j,x;
    int i=0;
    while(1){
        
        x=scanf("%[a-z|A-Z]",str[i]);
        if(getchar()=='\n')break;
        if(x){
            i++;
        }
    }
    for(int j=i; j>=0;j--)
    printf("%s ",str[j]);
    
    return 0;
}