Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cs444
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xun Yang
cs444
Merge requests
!13
merge Code gen field
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
merge Code gen field
CodeGenField
into
insta-field
Overview
0
Commits
6
Pipelines
0
Changes
10
Merged
Xun Yang
requested to merge
CodeGenField
into
insta-field
4 years ago
Overview
0
Commits
6
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
version 1
version 3
79a9a064
4 years ago
version 2
79a9a064
4 years ago
version 1
9b88df6f
4 years ago
insta-field (base)
and
version 2
latest version
9271c23b
6 commits,
4 years ago
version 3
79a9a064
5 commits,
4 years ago
version 2
79a9a064
5 commits,
4 years ago
version 1
9b88df6f
4 commits,
4 years ago
Show latest version
2 files
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
Tests/A5/J1_01_basicTest.java
+
4
−
4
Options
@@ -3,12 +3,12 @@ public class J1_01_basicTest {
public
J1_01_basicTest
()
{}
public
static
int
test
()
{
return
J1_01_basicTest
.
test2
();
return
J1_01_basicTest
.
test2
(
4
,
5
);
}
public
static
int
test2
(){
public
static
int
test2
(
int
i
,
int
j
){
if
(
true
)
return
123
;
return
7
;
return
i
;
return
j
;
}
}
Loading