20071、编写程序,从键盘输入一个字符串,并将其中非小写字母的字符去掉。#include<stdio.h>#include<string.h>int main(){ int i,j=0; char a[50],b[50]; printf("输入一个字符串:\n"); g...