Answer:
public Balloon () {
this.radius = 10;
this.color = new Color(135,206,250);
}
Step-by-step explanation:
To solve this problem you need to use the constructor from the Color class to create an object with the sky blue RGB ints (Dont forget import the Color class)
class Balloon
{
private double radius;
private Color color;
public Balloon() {
this.radius =10;
this.color = new Color(135,206,250);
}
}