文件名称:c.c
- 所属分类:
- C#编程
- 资源属性:
- [C/C++] [源码]
- 上传时间:
- 2012-11-26
- 文件大小:
- 1kb
- 下载次数:
- 0次
- 提 供 者:
- Cynth******
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
Converting a number from one base to another
Write a program that prompts the user for a nonzero hexadecimal number, uses getchar() to read
the input, and prints out its value in decimal.
The input can be preceded or followed by blanks and will end in carriage return (anything input after the first carriage return will be ignored). An error message should be output in response to inputs that are incorrect, that is, do not start (after possibly some spaces) with 0x or 0X followed by hexadecimal digits, or are too large to fit in an unsigned long, or are followed by anything but spaces before carriage return.
Here are examples of possible inputs and outputs on a machine where an unsigned long occupies 8 bytes.
Write a program that prompts the user for a nonzero hexadecimal number, uses getchar() to read
the input, and prints out its value in decimal.
The input can be preceded or followed by blanks and will end in carriage return (anything input after the first carriage return will be ignored). An error message should be output in response to inputs that are incorrect, that is, do not start (after possibly some spaces) with 0x or 0X followed by hexadecimal digits, or are too large to fit in an unsigned long, or are followed by anything but spaces before carriage return.
Here are examples of possible inputs and outputs on a machine where an unsigned long occupies 8 bytes.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
question3.c