07/06/25 11:15:41
>>151
1
#include <stdio.h>
#include <ctype.h>
#include <conio.h>
int main(void)
{
char ch;
ch = getche();
if('a' <= ch && ch <= 'z') printf(" -> %c\n",toupper(ch));
else if('A' <= ch && ch <= 'Z') printf(" -> %c\n",tolower(ch));
return 0;
}
2
>>147のアルファベットのとこを数字に変える