#include <stdio.h>

#include <stdlib.h>

int main()

{

char a;

printf("대문자를 입력해주세요");

scanf("%c", &a);

if(65<= a <=90)

printf("대문자를 소문자로 바꾼값은 : %c",  a+32);

else if(97<= a <=122)

printf("소문자에서 대문자로 바꾼값은 : %c",a-32);

system("pause");

}


대문자 -> 소문자는 되는데

소문자 -> 대문자가 안대요 머가문제일까요? 오류는 없는데