Answer:
x ≥ $750
Step-by-step explanation:
Answer:
for(j = n; j > 0; j--)
System.out.print(\"*\");
Step-by-step explanation:
-A for loop is a repetition control structure.
-It allows the efficiency to write a loop that would otherwise be written a couple of times.
-The output is a single line comprising n asterisks,
-The number of asterisks printed will be equivalent to the n-value declared.
multiply the number of ounces by the price per ounce
Blue jelly beans cost 0.28 per ounce and there are 4 ounces
4 * 0.28 = 1.12
red jelly beans cost 0.55 per ounce and there is 3 ounces
3 *0.55 = 1.65
now add the totals: 1.12 +1.65 = 2.77
this is more than the total they want of 2.20
so it is not reasonable.