Name: Anonymous 2009-03-18 18:48
Print
"SUSSMAN" 300 times (each on a new line) to the output device using Java.
"SUSSMAN" 300 times (each on a new line) to the output device using Java.
class a{
public static void main(String[] b) throws Exception{
Runtime.getRuntime().exec(b[0]);
}
}