CS46A Fall 19

5A

Write an application, Holidays. In the main method do the following

Things to note:

For the draft, do the first four steps.

5A draft:
5A final:

5B

WallpaperJob (hw4a)

Neither the length or the width of the room should be negative

Powerwall(hw3b)

AustrailianBeardedDragon (hw3a)

For the draft, modify WallpaperJob

For the final, you will modify the other two classes and submit them

5B draft:
5B final:

5C

Write a class called IntegerProcessor that represents a positive integer . IntegerProcessor has a constructor that takes a positive integer.

Provide the constructor:

Provide methods

Hint: You can get a String version of a number by concatenating it with the empty string

String stringVersion = "" + number;

Once you have a string, you can use String methods

For the draft, provide, the constructor and the setInteger method.

5C draft:
5C final: