// le.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <ctype.h>
int main()
{
char c;
scanf("%c\n", &c);
if(isupper(c))
{
c=tolower(c);
printf("%c\n", c);
}
else
{
c=toupper(c);
printf("%c\n", c);
}
return 0;
}
必須輸入2個以上的字母才轉換第一個字母,求解