public class PQSim {
public static void main(String[] args) {
simulate(3600, 5);
}
// Simulate for time (Seconds) for a printer speed (ppm)
public static void simulate(int seconds, int ppm) {
// Your code here
}
public static boolean newPrintTask() {
return (180 == ((int) (1 + 180 * Math.random())));
}
}