#include <唯巧stdio.h>
int main()
{
printf("我明山穗激卜们\n");
return 0;
}
已经改正含埋桥了谈猛,液埋运行通过:
#include
int main()
{
char tmp;
scanf("%c",&tmp);
if(tmp>=65&&tmp<=90)
{
tmp=tmp+32;
printf("%c\n",tmp);
return 0;
}
if(tmp>=97&&tmp<=122)
{
tmp=tmp-32;
printf("%c\n",tmp);
return 0;
}
}