题解 | 单词倒排
单词倒排
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; else i++; } for(int j=i;j>=0;j--){ printf("%s ",str[j]); } return 0; }