// // Solution1 // // Author: Kenneth Chan // User: kjc // Date : October 2009 // Description: Simple program print a sentence // class sol1 { public static void main( String argv[] ) { System.out.println( "This is a sentence of your choice" ) ; } }