漫游猫认证
c语言实现: #include<stdio.h> int main(){ char a='a'; printf("%d",a); return 0; } 想要输出ASCII值直接将字母在赋给字符变量,然后将字符用printf输出时输出类型变为%d就可以。