Many of you may be asking your selves what this is exactly? To be precise it's a program of the Credit Score system that is based in Canada. This is an example of what I'm currently working on that revolves around the ECC rank system. The code below is from the program called "Ready to Program." To simply run this program, I'll make a quick list of what to do. 1. Search "Ready to Program" on which ever browser you use. 2. The website you'll want to use is (compsci.ca/holtsoft/) that's the one my local school board uses. 3. Download "Ready to Program 1.7.1" 4. The download will appear, press keep to start your download (Well if your using Chrome) 5. Open up the installer and follow the instructions. 6. Create a shortcut on your PC and open it. 7. A blank template should appear, copy the code I have below and paste it onto your blank template. 8. Click Run and follow what it says and it'll work. Code: // The "CreditScore" class. import hsa.Stdin; public class CreditScore { public static void main (String[] args) { int iCreditScore = 0; String sComment, sLevel; System.out.print ("Enter your credit score (300-800):"); iCreditScore = Stdin.readInt (); if ((iCreditScore >= 300) && (iCreditScore <= 559)) { sLevel = "Poor"; sComment = "4% of the Cdn Population has the same credit range you have as of 2013."; } else if ((iCreditScore >= 560) && (iCreditScore <= 659)) { sLevel = "Fair"; sComment = "10% of the Cdn Population has the same credit range you have as of 2013."; } else if ((iCreditScore >= 660) && (iCreditScore <= 724)) { sLevel = "Good"; sComment = "15% of the Cdn Population has the same credit range you have as of 2013."; } else if ((iCreditScore >= 725) && (iCreditScore <= 759)) { sLevel = "Very Good"; sComment = "14% of the Cdn Population has the same credit range you have as of 2013."; } else if ((iCreditScore >= 760) && (iCreditScore <= 800)) { sLevel = "Excellent"; sComment = "57% of the Cdn Population has the same credit range you have as of 2013."; } else { sLevel = "Invalid Mark"; sComment = "Invalid Mark"; } System.out.println ("Level Achieved: " + sLevel); System.out.println ("Comment: " + sComment); } // main method } // CreditScore class