编写程序,输入一段字符串,去掉其中数字再输出用C语言怎么写
编写程序,输入一段字符串,去掉其中数字再输出用C语言怎么写
日期:2018-03-29 16:53:25 人气:1
很简单 马上好???
asd123df34f3f5
asddfff
Press any key to continue
#include "stdio.h"
#include "string.h"
main() //主函数
{
int i,nLen;
char str[100];
gets(str);
nLen = strlen(str);
for (i=0;i<nLen;i++)
if (