怎么还在讨论这个
你醒了?快起来敲代码!!
# include <stdio.h> # define NUM 3 int main (void) { char str[NUM][51]; char *p[NUM],*t; char token; int i; for(i=0;i<NUM;i++) { scanf("%s",str[i]); p[i]=str[i]; } scanf(" %c",&token); for(i=0;i<(NUM-1)/2;i++) { t=p[i]; p[i]=p[NUM-i-1]; p[NUM-i-1]=t; } for(i=0;i<NUM;i++) printf("%s ",p[i]); putchar(token); putchar('\n'); return 0; }