当前位置: 代码迷 >> C语言 >> 真是麻烦。
  详细解决方案

真是麻烦。

热度:312   发布时间:2007-06-30 14:26:13.0
真是麻烦。
编译了,就是不成功,说第二个 whlie 中有错误,怎么样解释?怎么改?
谢谢了。
#include <stdio.h>
fun( char *p )
{ char max,*q;
int i=0;
max=p[i];
while( p[i]!=0 )
{ if( max<p[i] )
{ max=p[i];
/**********found**********/
q=p+i;
}
i++;
}
/**********found**********/
wihle( q>p )
{ *q=*(q-1);
q--;
}
p[0]=max;
}
main()
{ char str[80];
printf("Enter a string: "); gets(str);
printf("\nThe original string: "); puts(str);
fun(str);
printf("\nThe string after moving: "); puts(str); printf("\n\n");
}
搜索更多相关的解决方案: 麻烦  

----------------解决方案--------------------------------------------------------
我想想啊```你的第2个while是不是要把凡是和MAX换过的数``都从小到大排一次``

或是``把所以和MAX换过的数```都进行``上一个数`覆盖下一个数啊```

如果谁的话``你的第2个循环是有问题``
----------------解决方案--------------------------------------------------------
  相关解决方案