See More

/* */ package ch02; /* */ /* */ public class Ch02Q18 { /* */ public static void main(String[] args) { /* 5 */ System.out.println("a\tb\tpow(a,b)"); /* 6 */ for (int i = 1; i <= 5; i++) /* 7 */ System.out.println("" + i + "\t" + (i + 1) + "\t" + (int)Math.pow(i, (i + 1))); /* */ } /* */ } /* Location: /Volumes/TXS.128G/hope useful/practice/2020.jar!/ch02/Ch02Q18.class * Java compiler version: 8 (52.0) * JD-Core Version: 1.1.3 */