Answer to Question #7695 in Java | JSP | JSF for emily

Question #7695
1) write a method called larger that accepts two floating point parameters (of type double) and returns true if the first parameter is greater than the second, and false otherwise.

2)write a method called sumRange that accepts two integer parameters representing a range. Issue an error message and return zero if the second parameter is less than the first. Otherwise, the method should return the sum of the integers in the range, inclusive.
1
Expert's answer
2012-03-27T09:32:42-0400
public class Question {
public static boolean Lager(double a, double b){
return a>b;
}
public static int sumRange(int a, int b){
int sum = 0;
if(a>b)
return 0;
for(int i=a; i<=b; i++)
sum+=i;
return sum;
}
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS