题目 从键盘读入一个字符串,若遇到字母,则输出0; 若遇到数字则输出1;否则不输出。例如:输入ab2&3@c,输出00110 代码 #include <stdio.h> #include <string.h> #define max 100 int main(){