是空格輸出它的ASCII碼值?
/*測(cè)試過(guò)可用*/
#include <stdio.h>
#include <stdlib.h>
int main() {
char one;
printf("請(qǐng)輸入一個(gè)字符。\n");
scanf("%c",&one);
if(one>29 && one<40)
{
printf("%d",(int)one);
}
if(one==32)
{
printf("32");
}
else
printf("%c",one);
return 0;
}