y = 5/2x + 5 would be your equation
72cm
you multiply the outside length (6cm each) by how many there are
Answer:
public class MovieRental
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.print("Enter the number of movie rentals: ");
int movieRentals = in.nextInt();
System.out.print("Enter the number of members referred to the video club: ");
int memberReferral = in.nextInt();
in.close();
double discountVal = Math.min(movieRentals + memberReferral, 75);
System.out.println("The discount is equal to: " + discountVal);
}
}
Answer:
The formula y = mx + b sometimes appears with
different symbols.
For example, instead of x, we could use the
letter C. Instead of y, we could use the letter F.
Then the equation becomes
F = mC + b.
All temperature scales are related by linear
equations. For example, the temperature in
degrees Fahrenheit is a linear function of degrees Celsius.
Water freezes at: 0°C, 32°F
Water Boils at: 100°C, 212°F
Hope this helps!