Problem1431--ZTP019 *号移位

1431: ZTP019 *号移位

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 1  Solved: 1
[Submit] [Status] [Web Board] [Creator:]

Description

所属年份:2010.9;2011.3;
规定输入的字符串中只包含字母和*号。请编写函数fun,其功能是:将字符串中的前导*号全部移到字符串的尾部。

例如,字符串中的内容为:”*******A*BC*DEF*G****”,移动后,字符串中的内容应当是:”A*BC*DEF*G***********”。在编写函数时,不得使用C语言提供的字符串函数。

#include <stdio.h>
void  fun( char *a )
{
}
int main()
{
    char  s[81];
    gets(s);
    fun( s );
    puts(s);
    return 0;
}

Sample Input

*ABC**

Sample Output

ABC***

Source/Category