说明: 全国计算机考试二级c语言试题 #include #include #include #define N 9 long ctod( char *s ) { long d=0; while(*s) if(isdigit( *s)) { /**********found**********/ d=d*10+*s-'0'; /**********found**********/ *s++; } return d; } long fun( char *a, char *b ) { /*******
<lixiaoyumail> 上传 | 大小:1mb