Revision 1:

Code
          if (cash >= 25000 || credit >= 25000)
               System.out.println("You can purchase the Audi TT Quattro.");
          else if (cash < 100 && credit <= 0)
               System.out.println("<snigger>");
          else
          {
               System.out.println("Sorry, you can't afford such a nice car.");
               System.out.println("Buy yourself a bicycle instead.");
          }