#include<stdio.h> void main() { char c1,c2; c1='a',c2='B'; printf("%c,%c\n",c1-32,c2+32); } 运行结果: c1=A,c2=b