// randG.java - mjd@cs.auckland.ac.nz import java.io.*; import graphs.*; public class randG { public static void main(String args[]) { int order = 10; int rate = 50; int num = 1; try { if (args.length > 0) order = Integer.parseInt(args[0]); if (args.length > 1) rate = Integer.parseInt(args[1]); if (args.length > 2) num = Integer.parseInt(args[2]); } catch(NumberFormatException e) {System.out.println(e);} System.err.println("order = " + order + " rate = " + rate + " num = " + num); for (int i=0; i