欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

是空格輸出它的ASCII碼值

是空格輸出它的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;

}