Answer:
Step-by-step explanation:
2.)A=
=75.
3.) years to month
6 years is 72 month+2 month=74 month
month to days
74 month=2250.84days.
Answer:
public class WeatherForecast {
<em>//Instance variables initialized to default values
</em>
private String skies = "";
private int high = 0;
private int low = 0;
<em>//Getters and Setters
</em>
public void setSkies(String value) {
skies = value;
}
public void setHigh(int value) {
high = value;
}
public void setLow(int value) {
low = value;
}
public String getSkies() {
return skies;
}
public int getHigh() {
return high;
}
public int getLow() {
return low;
}
}
Answer:
$57,286
Step-by-step explanation:
All the corners of a rectangle is equal to 90 degrees. So you need to set (x-1) and (2x+10) equal to 90 and then solve for x.
(x - 1) + (2x + 10) = 90
<em>Combine the like terms...
</em>3x + 9 = 90
<em>Subtract both sides by 9...
</em>3x + 9 - 9 = 90 - 9
3x = 81
<em>Divide both sides by 3...
</em><em>3x = 81
</em>(3x) / 3 = 81 / 3
x = 27