- 1、本文档共10页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
十六进制正整数,输出它们对应的八进制数.java(国外英文资料)
十六进制正整数,输出它们对应的八进制数.java(国外英文资料)
Problem description
Given n hexadecimal integers, output their corresponding octal digits.
Input format
The first act of input is a positive integer n (1 = n = 10).
The next n lines, each line by A 0 ~ 9, uppercase string composed of A ~ F, said to convert hexadecimal positive integers, each hexadecimal number length less than 100000.
The output format
Output n rows, each input corresponds to an octal positive integer.
Pay attention to
The hexadecimal number entered does not have a leading 0, such as 012A.
The octal number of the output cant have a leading zero.
The sample input
2
39
123 ABC
Sample output
71
4435274
prompt
First, the hexadecimal number is converted into a certain number, and then the decimal number is converted into octal
Import the Java. Util. *;
Public class Main
{
Public static void main (String [] args)
{
( a , a);
}
Public static String (String value, int SRC, int dest)
{
Return Integer.
}
}
The computer USES binary, a number that can be expressed in arbitrary terms.
Key technical analysis:
V in Java in the statement is a decimal number by default when adopted, can be in front of the Numbers and symbols represent Numbers using octal or adding 0 (zero) 】 【 hexadecimal [with a 0 (zero) x x].
The integral package class Integer and Long for v Java provide the static method of toString (int I, int radix), which converts an arbitrary Integer into other Integer integers.
V USES an Integer or Long toBinaryString method to convert integers into binary.
V USES an Integer or Long toOctalString method to convert integers into octal.
V USES an Integer or Long toHexString method to convert integers into hexadecimal.
V USES the Integer or Long toString (int I) method to convert other integers into decimal integers.
Public class SystemConversion {
Public static void main (String [] args)
Int iOct = 0567; / / octal Numbers statement, plus 0 (zero)
Int iTen = 1000; / / decimal Numbers statement
Int iHex = 0 xabcd; / / hexadeci
您可能关注的文档
最近下载
- 基于AI框架的智能工厂设计思路.pptx VIP
- DLT 5210.1-2021 电力建设施工质量验收规程全套表格最新201至400页.docx
- 研发费用加计扣除政策执行指引2.0(含链接).docx
- 树木砍伐与修剪安全培训.pptx
- 党员2025年转正申请书参考8篇.doc VIP
- 2025年高等教育自学考试自考《计算机应用基础》知识点试题集精析.docx VIP
- 年度培训计划表.doc VIP
- 广州市新业态从业人员参保现状、难点及其对策研究——基于华农周边外卖骑手调查数据的分析.docx
- 幼儿园:“思维导图”让建构游戏,从“联合”到“合作” 梅英超.docx
- 毕业设计----道路工程设计说明书.doc VIP
文档评论(0)