CSC152 2005S, Class 7: Strings Admin: * Attendance (late: Bernstein, Buck) * Thanks for your patience * Nothing to turn in right now * Questions and comments so far * packages create short-term problems * Reading (available Thursday): Numbers Overview: * Summary * Q and A * Lab * Reflection Reflective Comments * Sam screwed up the file input code. It's fixed now. * You can use strings directly in the println method. String entry; entry = eyes.readLine(); String starstarspace = "** "; String spacestarstar = " **"; String result = starstarspace.concat(entry); result = result.concat(spacestarstar); pen.println(result); pen.println("** ".concat(entry).concat(" **")); pen.println("** " + entry + " **");