PTA 6-1 删除字符串中所有*

本题要求实现一个函数,字符串由字符和 * 号组成,要求删除字符串中所有的 * 号。如 abCDd*ef**,则函数执行结果为abCDdef。

函数接口定义:

 
  

void del_star ( char x[] );

其中 x 是用户传入的参数。

裁判测试程序样例:

 
  

#include #define N 80 void del_star (char x[]); int main() { char a[N]; scanf("%s", a); del_star(a); printf("%s", a); return 0; } /* 请在这里填写答案 */

输入样例:

 ***ab*CDd***ef** 

输出样例:

abCDdef
void del_star ( char x[] )
{int i,j=0;
 for(i=0;x[i]!='\0';i++)
 {
     if(x[i]!='*')
         x[j++]=x[i];
 }
 x[j]='\0';}

 

你可能感兴趣的:(c++,算法,开发语言)