哪位能为我分析下面这道题:
#include<stdio.h>
{ char a,b;
a=getchar();
a=a-’A'+’0′;b=b*2;
printf(“%c,%c”,a,b);
}
固定链接: https://www.vcgood.com/archives/2209
声明: tianshangren531 2008年03月21日 发表于 C语言帝国
哪位能为我分析下面这道题:
#include<stdio.h>
{ char a,b;
a=getchar();
a=a-’A'+’0′;b=b*2;
printf(“%c,%c”,a,b);
}
固定链接: https://www.vcgood.com/archives/2209
声明: tianshangren531 2008年03月21日 发表于 C语言帝国
你必须先 登录才能发表评论。
找到对应的ACLL码值,转化为字符输出。