将⼋进制数转换为⼗进制数——java import java.util.Scanner;
/*
* 编写⽅法,将⼋进制数转换为⼗进制数。Integer.valueOf("876",8).toString()java valueof
* */
public class OctalToDecimal {
  public static void main(String[] args) {
    String oldValue;
    System.out.print("Input the an Octal number:");
    oldValue = new Scanner(System.in).next();
    String newValue;
    newValue = Decimal(oldValue);
    System.out.print(newValue);
}
  public static String toDecimal(String oldValue)
  {
    String integer = Integer.valueOf(oldValue,8).toString();
    return integer;
  }
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。