/****************************************************************************** * This program prints "I think I Can!" * * Copyright © 2016 Richard Lesh. All rights reserved. *****************************************************************************/ public class IThinkICan { public static void main(String[] args) { System.out.println("I think I can!"); System.out.println("I think I can!"); System.out.println("I think I can!"); System.out.println("I think I can!"); System.out.println("I think I can!"); } }