/************************************************************** * Road Less Travelled * Mark Goadrich * CSC 204 - Spring 2008 **************************************************************/ public class Frost{ // Main method to run the program public static void main(String[] args) { System.out.println("Two roads diverged in a wood, and I --"); // 20% of the time you take the road less travelled by if (Math.random() > 0.8) { System.out.println("I took the one less travelled by,"); } else { // 80% of the time you are a conformist System.out.println("I was a vile conformist"); } System.out.println("And that has made all the difference."); } }