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