public class RighelloTest { public static void main(String[] args) { if(args.length < 2) { System.out.println("Modalità di utilizzo:\n\t java RighelloTest "); return; } int u = Integer.parseInt(args[0]); int t = Integer.parseInt(args[1]); System.out.println("Righello da " + u + " con tacche di dimensione " + t); Righello.righello(t, u); System.out.println(); } }