#11294: JAVA 解題 十進位在JAVA也可轉 2 . 8 .16 進位


wilson30915 (XDXD)

學校 : 臺北市私立延平高級中學
編號 : 42443
來源 : [1.200.213.86]
最後登入時間 :
2019-05-25 21:11:09
d635. 幸運777?luck -- jack1 | From: [36.228.138.28] | 發表日期 : 2016-08-21 17:47

import java.util.Scanner;
import java.lang.Integer;
public class java {

public static void main(String[] args) {
Scanner time=new Scanner(System.in);
int a;
while(time.hasNext())
{
a=time.nextInt();
if(a<0){
System.out.println("-1");
}else{

System.out.println(Integer.toOctalString(a));   //10進位轉成8進位
}
}
}

}

 
ZeroJudge Forum