1.获取输入2.验证合法性3.把用户输入的字符同意转换为小写4.用输入字符-'a'+15.输出结果
#include <stdio.h>main(){scanf("%c",&c);if(c<='Z')printf("%d",c-64);elseprintf("%d",c-94);}