TestMath.java 194 B

123456789
  1. package com.sf.javase;
  2. public class TestMath {
  3. public static void main(String[] args) {
  4. System.out.println(Math.log10(12321));
  5. System.out.println(Math.pow(10, 4));
  6. }
  7. }