你可以用判断输入字符的Ascii码来判断输入的是大写还是小写,然后就用相应的转换函数就行了
#include"stdio.h"
void main()
{
char c;
while((c=getchar())!='\n')
{
if(c>65&&c<90)c=c+32;
else if(c>97&&c<122)c=c-32;
putchar(c);
}
}
#include
#include
void fun(char *p)
{
while(*p)
*(p++)=toupper(*p);
}
void main()
{
char str[20];
gets(str);
fun(str);
puts(str);
}