197 days....200-3 days = 197
Simplified expression: 120x dollars
Step-by-step explanation:
Given,
Number of cartons in case of Scout cookies = 10 cartons
Number of boxes in carton of Scout cookies = 12 boxes
Amount earned on whole case = 10(12x) dollars
To simplify the expression, we will multiply 10 by 12x
Amount earned on whole case = 120x dollars
Simplified expression: 120x dollars
Keywords: multiplication, variable
Learn more about multiplication at:
#LearnwithBrainly
Given :
Raffle tickets were sold for a school fundraiser to parents, teachers, and students. 563 tickets were sold to teachers. 888 more tickets were sold to students than to teachers. 904 tickets were sold to parents.
To Find :
How many tickets were sold to students.
Solution :
Ticket sold to teachers, T = 563 .
Ticket sold to parents, P = 904 .
Let, ticket sold to students are S.
Now, it is given that :
S = T + 904
S = 563 + 904
S = 1467 students
Therefore, tickets sold to students are 1467 .
Hence, this is the required solution.
Answer =-0.7x +0
Find the gradient by y2-y1/x2-x1
-14 -7/ 20- -10
-21/30
-0.7
And plug in the coordinates to find the y intercept
7= -0.7 (-10) + c
C=0
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);
}
}