40 because the three in the units place is smaller than 5 so you round down.
3 would be 53. Since the lines are parallel the angles will be the same
4 would be 47 because of outer exterior angles
Answer:
fiesta size which is 5 times bigger than the normal size, and the fiesta size price is a little less than 3 times the normal price basicly if you bought 5 of those, you would get the same amount which. is a waist of money, therefore the fiesta size bag is a better deal to purchase
Hope It Helps!
What language are you writing this in? C? Javascript? Java? Are you allow to have parameters?
The general idea should be the same. Since 1 dollar = 100 pennies, we should write something like...
Java:
public static double numberofpennies(double dollars, double penny) {
double sum = 0;
// The amount of pennies that dollar represents
double converted = dollars * 100.0;
sum = converted + penny;
return sum;
}
Note: You should probably place this question under the category computer and technology instead of math. Also, this is just an example of what you could possibly write. What parameters you are allowed to use, what type (double? int? etc?) of pennies are you allowed to return, etc. depends on how you write it.