1009_说反话 (20)

#include
void output(char *str,int n)
{
	int t=n,flag=n;
	while(str[n]!='\0'&&str[n]!=' ') n++;
	if(str[n]==' ')
	{
		output(str,n+1);
		while(t

这段代码是我自己写的。刚开始老是出错,就是没有考虑到只输入一个单词的情况!


荒芜大神帮我查出错误并且改正了代码

#include 
#include 
void output(char *str)
{
  char* tail = strchr(str,' ');
  if (tail == NULL)
    printf("%s",str);
  else
    {
      output(tail + 1);
      *tail = '\0';
      printf(" %s",str);
    }
}
int main()
{
  char str[81];
  gets(str);
  output(str);
  putchar('\n');
  return 0;
}




你可能感兴趣的:(PAT_PAT,(Basic,Level),Practise)