• Exercise 3
     
    • Create program that asks a word from user
      and adds word "wooden" in front of it.

    • Examples of inputs and results:

      >Give a word:
      >house
      >wooden house

      >Give a word:
      >chair
      >wooden chair
       

    • Example program, that need class Lue to function properly
       
    • Hints:
      • Java Tutorial / Learning the Java Language / Object and Data Basics / Strings,
        especially Strings and the Java Compiler
      • documentation of java.lang.String class
         
  • Back