習題8 6 刪除字元 20 分

2021-10-19 17:58:51 字數 480 閱讀 2520

/*

本題要求實現乙個刪除字串中的指定字元的簡單函式。

函式介面定義:

void delchar( char *str, char c );

其中char *str是傳入的字串,c是待刪除的字元。函式delchar的功能是將字串str**現的所有c字元刪除

*/#include

#define maxn 20

void delchar( char *str, char c );

void readstring( char s );

int main()

void delchar( char *str, char c )

ar[j] = 『\0』; //設定停止條件

for(i = 0; ar[i] != 『\0』; i++) //處理後的陣列複製回原陣列

str[i] = ar[i];

str[i] = 『\0』;

}

習題8 6 刪除字元(20 分)

習題8 6 刪除字元 20 分 本題要求實現乙個刪除字串中的指定字元的簡單函式。void delchar char str,char c 其中char str是傳入的字串,c是待刪除的字元。函式delchar的功能是將字串str中出現的所有c字元刪除。include define maxn 20 v...

習題8 6 刪除字元(20 分)

本題要求實現乙個刪除字串中的指定字元的簡單函式。函式介面定義 void delchar char str,char c 其中char str是傳入的字串,c是待刪除的字元。函式delchar的功能是將字串str 現的所有c字元刪除。裁判測試程式樣例 include define maxn 20 vo...

習題8 6 刪除字元(20 分)

本題要求實現乙個刪除字串中的指定字元的簡單函式。void delchar char str,char c 其中char str是傳入的字串,c是待刪除的字元。函式delchar的功能是將字串str 現的所有c字元刪除。include define maxn 20 void delchar char ...