12,000 pounds, 1 ton = 2000 pounds
Answer:
x= 8/9
Step-by-step explanation:
Open everything up to get 5x+2x-6=-2x+2. Move numbers with an x to the left side and without to the right to have 5x+2x+2x=2+6. Simplify to have 9x=8. Divide by 9 which leaves you with x= 8/9
Answer:
p+1.50=b
Step-by-step explanation:
Hope it helps (;
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);
}
}