Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Prog01ResitApril
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
william.leather
Prog01ResitApril
Commits
66614238
Commit
66614238
authored
Apr 17, 2019
by
william.leather
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace ResitCode.java
parent
1f5e804b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
14 deletions
+40
-14
ResitCode.java
src/ResitCode.java
+40
-14
No files found.
src/ResitCode.java
View file @
66614238
import
java.util.ArrayList
;
// import the ArrayList class
import
java.util.ArrayList
;
// import the ArrayList class
import
java.util.List
;
public
class
ResitCode
{
public
class
ResitCode
{
public
int
Fib_No
(
int
position
)
{
public
static
int
Fib_No
(
int
position
)
{
List
<
Integer
>
array
=
new
ArrayList
<>();
array
.
add
(
1
);
array
.
add
(
2
);
for
(
int
i
=
0
;
i
>=
array
.
size
();
i
++)
{
System
.
out
.
println
(
array
.
get
(-
1
));
}
}
return
position
;
}
public
String
pigLatin
(
String
message
)
public
String
pigLatin
(
String
message
)
{
{
...
...
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