结果是4.5
2.
#include
int main(void)
{
char s;
s='a';
printf("%c",s-32);
return 0;
}
第一题 结果是5.5 第二题 char x = ‘a’ x = x-30; 这样就把小写字母,换成大写字母了。