Commit 157e8e78 authored by thomas.unsworth's avatar thomas.unsworth

Update assessment.java

parent dc557b77
public class assessment {
public class assessment {
public int biggestOfThree(int num1, int num2, int num3)
public int biggestOfThree(int num1, int num2, int num3) {
{ // 01 - A Gentle Start
// 01 - A Gentle Start // Debug this method so it passes the unit test.
// Debug this method so it passes the unit test. // Add comments beside any changes you make
// Add comments beside any changes you make
if (num1>num2)//change symbol around.
if (num1>num2)//change symbol around. {
{ if (num3>num1)
if (num3>num1) {
{ return num3;
return num3; }
} else
else {
{ return num1;
return num1; }
} }
} else
else {
{ if (num3>num2)
if (num3>num2) {
{ return num3;
return num3; }
} else
else {
{ return num2; //added ; syntax error
return num2; //added ; syntax error }
} }
} }
}
public int sumNumbersBetween(int start, int end)
public int sumNumbersBetween(int start, int end) {
{ // 02 - Adding Across A Range
// 02 - Adding Across A Range // Complete this method so that it adds together all
// Complete this method so that it adds together all // the integers between start and end, but not including
// the integers between start and end, but not including // start or end
// start or end // This method should only deal with 0 and positive integers
// This method should only deal with 0 and positive integers // This method should return -1 if it cannot calculate the result
// This method should return -1 if it cannot calculate the result
// You should comment your code explaining what each part does
// You should comment your code explaining what each part does
int sumOfSquares = 0;
int sumOfSquares = 0;
if(start < 0 || end < 0 || ((end - start) <= 1))
if(start < 0 || end < 0 || ((end - start) <= 1)) {
{ return -1;
for(int i = start +1;i < end; i++) }
{ else
sumOfSquares += i; {
} for(int i = start +1;i < end; i++)
} {
else sumOfSquares += i;
{ }
return -1;
} }
return sumOfSquares; return sumOfSquares;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment