mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-12-16 15:44:39 +00:00
36 lines
559 B
Markdown
36 lines
559 B
Markdown
# 6-1 删除字符串中数字字符
|
|
|
|
删除一个字符串中的所有数字字符。
|
|
|
|
### 函数接口定义:
|
|
```c++
|
|
void delnum(char *s);
|
|
```
|
|
|
|
其中 `s `是用户传入的参数。 函数的功能是删除指针 `s `所指的字符串中的所有数字字符。
|
|
|
|
### 裁判测试程序样例:
|
|
```c++
|
|
#include "stdio.h"
|
|
void delnum(char *s);
|
|
int main ()
|
|
{ char item[80];
|
|
gets(item);
|
|
delnum(item);
|
|
printf("%s\n",item);
|
|
return 0;
|
|
}
|
|
|
|
/* 请在这里填写答案 */
|
|
```
|
|
|
|
### 输入样例:
|
|
```in
|
|
a0bc+d496df
|
|
```
|
|
|
|
### 输出样例:
|
|
```out
|
|
abc+ddf
|
|
```
|