Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Programming 01 Resub
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
louie.bridges
Programming 01 Resub
Commits
15b08026
Commit
15b08026
authored
Apr 04, 2019
by
louie.bridges
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update ResitCode.java
parent
668a3213
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
45 deletions
+46
-45
ResitCode.java
src/ResitCode.java
+46
-45
No files found.
src/ResitCode.java
View file @
15b08026
import
java.util.ArrayList
;
// import the ArrayList class
import
java.util.ArrayList
;
// import the ArrayList class
public
class
ResitCode
{
public
class
ResitCode
{
public
int
Fib_No
(
int
position
)
{
public
int
Fib_No
(
int
position
)
{
ArrayList
<
Integer
>
fibList
=
new
ArrayList
<
Integer
>();
ArrayList
<
Integer
>
fibList
=
new
ArrayList
<
Integer
>();
//Adds 0 and 1 to the ArrayList
//Adds 0 and 1 to the ArrayList
fibList
.
add
(
0
);
fibList
.
add
(
0
);
fibList
.
add
(
1
);
fibList
.
add
(
1
);
//For loop for the Fibonacci sequence.
//For loop for the Fibonacci sequence.
for
(
int
i
=
0
;
i
<
position
;
i
++)
{
for
(
int
i
=
0
;
i
<
position
;
i
++)
{
fibList
.
add
(
fibList
.
get
(
fibList
.
size
()
-
1
)+
fibList
.
get
(
fibList
.
size
()
-
2
));
fibList
.
add
(
fibList
.
get
(
fibList
.
size
()
-
1
)+
fibList
.
get
(
fibList
.
size
()
-
2
));
}
}
return
fibList
.
get
(
position
-
1
);
return
fibList
.
get
(
position
-
1
);
}
}
public
String
pigLatin
(
String
message
)
{
public
String
pigLatin
(
String
message
)
{
String
Newsentence
=
""
;
String
Newsentence
=
""
;
String
[]
words
;
//Creates a String array
String
[]
words
;
Newsentence
=
message
;
words
=
Newsentence
.
split
(
" "
);
Newsentence
=
message
;
words
=
Newsentence
.
split
(
" "
);
String
sentence
=
""
;
String
sentence
=
""
;
for
(
String
letters
:
words
)
{
//Creates a for loop that goes through each letter in the sentance
for
(
String
letters
:
words
)
{
sentence
+=
letters
.
substring
(
1
)
+
letters
.
substring
(
0
,
1
)
+
"ay "
;
sentence
+=
letters
.
substring
(
1
)
+
letters
.
substring
(
0
,
1
)
+
"ay "
;
}
}
return
sentence
.
trim
();
//Removes the space at the end of the sentences
}
return
sentence
.
trim
();
}
}
}
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