当前位置: 代码迷 >> C语言 >> [求助]!!!谢谢!! 同僚们帮忙呀!
  详细解决方案

[求助]!!!谢谢!! 同僚们帮忙呀!

热度:91   发布时间:2005-04-25 17:28:00.0
[求助]!!!谢谢!! 同僚们帮忙呀!
编程由键盘输入一个字符,然后将该字符ASCII码的高4位和低4位分别输出!!
搜索更多相关的解决方案: 同僚  

----------------解决方案--------------------------------------------------------
大家帮帮忙!!谢谢咯
----------------解决方案--------------------------------------------------------

//编程由键盘输入一个字符,然后将该字符ASCII码的高4位和低4位分别输出!!

#include <stdio.h>

void in_out_put(char);

void in_out_put() { char c; printf("please enter the character :\t"); c=getchar(); if(c<=15) { printf("the high four position is : %d , the low four position is : %d",0,c); printf("\n"); } else printf("the high four positin is : %d , the low four position is : %d\n ",c-15,15); }

void main() { in_out_put(); }


----------------解决方案--------------------------------------------------------
运行不起!!!+错

[此贴子已经被作者于2005-4-25 19:08:51编辑过]



----------------解决方案--------------------------------------------------------
谢谢了,我想到了
----------------解决方案--------------------------------------------------------
  相关解决方案