/* The Computer Language Benchmarks Game http://benchmarksgame.alioth.debian.org/ contributed by Mark C. Lewis modified slightly by Chad Whipkey */ public final class nbody { public static void main(String[] args) { int n = Integer.parseInt(args[0]); NBodySystem bodies = new NBodySystem(); System.out.printf("%.9f\n", bodies.energy()); for (int i=0; i