Answer and Explanation:
This is little harder than it looks and can be done without using loops. Lets take Bricks method to make a program.
Bricks ( 3 ,1 , 8)
Bricks ( 3 , 1 , 9 )
Bricks ( 3, 2 , 10 )
public boolean Bricks ( int small , int big , int goal ) {
if (goal > big * 5 + small)
return false;
if ( goal % 5 > small)
return false:
}
OR
public make_bricks( int small, int big, int goal):
if (goal % 5) < = big:
if (goal % 5) <= small:
return True
else:
return False
if (goal % 5) > = big:
if (goal - (big*5)) <= small:
return True
else:
return False