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
69f1fdc7
Commit
69f1fdc7
authored
Nov 27, 2018
by
benn.robinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A1
parent
7805f22d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
3 deletions
+18
-3
AssessmentPartOne.java
src/AssessmentPartOne.java
+18
-3
No files found.
src/AssessmentPartOne.java
View file @
69f1fdc7
...
...
@@ -7,7 +7,9 @@ public class AssessmentPartOne {
// Debug this method so it passes the unit test.
// Add comments beside any changes you make
if
(
num1
<
num2
)
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
)
{
...
...
@@ -26,7 +28,7 @@ public class AssessmentPartOne {
}
else
{
return
num2
return
num2
;
// added a semi colon because it finishes the return
}
}
}
...
...
@@ -44,8 +46,21 @@ public class AssessmentPartOne {
int
sumOfSquares
=
0
;
int
negativeAnswer
=
-
1
;
//
if
(
start
<
0
)
{
return
negativeAnswer
;
}
else
{
for
(
int
a
=
start
;
a
<
end
;
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