
/**
 * For04 - Practicing using loops and printing
 *       - Add beautifying blank space and line numbers
 * @author Kathryn
 * @version September 9 2005
 */
public class Song
{

    public static void main(String [] args)
    {
        // verse
        int l = 1;
        System.out.println("\n\n");
        System.out.println(l + ": You are going to bring yourself down.");
        System.out.println(++l + ":");
    
        //chorus 
        for (int i = 0; i < 10; i++) {
            System.out.println(++l + ": IÕve got soul, but IÕm not a soldier.");
        }           
    
        //verse
        System.out.println(++l + ":\n" + ++l + ": Yah yah, you got to help me out.");     
    }
}
