subject

Write a class square that represents a square to be drawn. store the following information in instance variables: size (length of any side) x coord of upper left-hand corner y coord of upper left-hand corner color provide the following methods:
a parameterless constructor that generates random values for the size, color, x, and y.
make the size between 100 and 200, x between 0 and 600, y between 0 and 400. the squares can be any color—note that you can pass a single int parameter to the color constructor, but it will only consider the first 24 bits (8 bits for each of r, g, b component).

important: your random number generator must be declared at the class level (not inside the constructor), and must be declared static. so its declaration and initialization should appear with the declarations of size, color, x, and y, and should look like this: private static random generator = new random();

a draw method that draws the square at its x, y coordinate in its color.

note that you need a graphics object, like the page parameter of the paint method, to draw.

your draw method should take a graphics object as a parameter.

now write an applet drawsquares that uses your square class to create and draw 5 squares. this code should be very simple; the paint method will simply create a square and then draw it, repeated 5 times.

don’t forget to pass the graphics object to draw.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 11:00
Technician a says that the radiator usually cools better if the front air dam is removed. technician b says that when a condenser has a leak it can be repaired easily with epoxy. who is correct?
Answers: 1
question
Computers and Technology, 22.06.2019 21:40
Develop a function to create a document in the mongodb database “city” in the collection “inspections.” be sure it can handle error conditions gracefully. a. input -> argument to function will be set of key/value pairs in the data type acceptable to the mongodb driver insert api call b. return -> true if successful insert else false (require a screenshot)
Answers: 2
question
Computers and Technology, 23.06.2019 16:00
An english teacher would like to divide 8 boys and 10 girls into groups, each with the same combination of boys and girls and nobody left out. what is the greatest number of groups that can be formed?
Answers: 2
question
Computers and Technology, 24.06.2019 00:30
Which boolean operator enables you to exclude a search term? a} not b} and c} or d} plus
Answers: 1
You know the right answer?
Write a class square that represents a square to be drawn. store the following information in instan...
Questions
question
Social Studies, 12.07.2019 04:40