Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
Assessment1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
benn.robinson
Assessment1
Commits
8898524f
Commit
8898524f
authored
Jan 07, 2019
by
benn.robinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update AssessmentPartOne.java
parent
f874ece1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
66 deletions
+70
-66
AssessmentPartOne.java
src/AssessmentPartOne.java
+70
-66
No files found.
src/AssessmentPartOne.java
View file @
8898524f
public
class
AssessmentPartOne
{
public
int
biggestOfThree
(
int
num1
,
int
num2
,
int
num3
)
{
// 01 - A Gentle Start
// Debug this method so it passes the unit test.
// Add comments beside any changes you make
if
(
num1
>
num2
)
// Changed the symbol from "<" to ">" because originally num1 could not be the biggest number so the code was wrong.
{
if
(
num3
>
num1
)
{
return
num3
;
}
else
{
return
num1
;
}
}
else
{
if
(
num3
>
num2
)
{
return
num3
;
}
else
{
return
num2
;
// added a semi colon because it finishes the return
}
}
}
public
int
sumNumbersBetween
(
int
start
,
int
end
)
{
// 02 - Adding Across A Range
// Complete this method so that it adds together all
// the integers between start and end, but not including
// start or end
// This method should only deal with 0 and positive integers
// This method should return -1 if it cannot calculate the result
// You should comment your code explaining what each part does
int
sumOfSquares
=
0
;
int
negativeAnswer
=
-
1
;
//
if
(
start
<
0
)
{
return
negativeAnswer
;
}
else
{
for
(
int
a
=
start
;
a
<
end
;
a
++)
}
}
return
sumOfSquares
;
}
public
class
AssessmentPartOne
{
public
int
biggestOfThree
(
int
num1
,
int
num2
,
int
num3
)
{
// 01 - A Gentle Start
// Debug this method so it passes the unit test.
// Add comments beside any changes you make
if
(
num1
>
num2
)
// Changed the symbol from "<" to ">" because originally num1 could not be the biggest number so the code was wrong.
{
if
(
num3
>
num1
)
{
return
num3
;
}
else
{
return
num1
;
}
}
else
{
if
(
num3
>
num2
)
{
return
num3
;
}
else
{
return
num2
;
// added a semi colon because it finishes the return
}
}
}
public
int
sumNumbersBetween
(
int
start
,
int
end
)
{
// 02 - Adding Across A Range
// Complete this method so that it adds together all
// the integers between start and end, but not including
// start or end
// This method should only deal with 0 and positive integers
// This method should return -1 if it cannot calculate the result
// You should comment your code explaining what each part does
int
sumOfSquares
=
0
;
int
negativeAnswer
=
-
1
;
//This is the number that will be return if range starts with a negative number
if
((
start
<
0
)
||
(
end
<
0
))
{
return
negativeAnswer
;
}
if
(
end
-
start
==
1
)
{
return
negativeAnswer
;
}
if
(
start
>
end
)
{
return
negativeAnswer
;
}
else
{
for
(
int
a
=
start
+
1
;
a
<
end
;
a
++)
{
//Loop used to add all the numbers beetween the first and last int
sumOfSquares
+=
a
;
}
}
return
sumOfSquares
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment