/ 可以使用ctype.h中的4个函数 islower,isupper分别判断是否是小写、大写,toupper,tolower分别转化成大写,小写 下面给出样例,输入字符串,输出转化后的 / include<stdio.h> include<string.h> include<ctype.h> int main(){ char s[100];int i,len;gets(s);len=strlen(s);for(i=0;i<l...