#include<string.h>
int main()
{
int e, i, o, u,n;
char a,b;
a='6';
b='0';
printf("%d %d\n",a,b);// '6'对应的ASCII码是54,'0'对应的ASCII码是48;
printf("%d\n",a-b);
printf("%d\n",a+b);
return 0;
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
return 0;
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
转载于:https://www.cnblogs.com/ZP-Better/p/4639626.html