仅仅是把字母从小写转换到大写,但是也涉及到了我并不太熟练的char与int的关系,所以记录一下。 char a=‘a’; 若要转换为大写的A,可以 char b=char(int(a)-32),也可以 char b=a-‘a’+‘A’