Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ma yanling
hutool-5-master
Compare Revisions
c3c8da7dda4b6ad4fdd28de4540ef1b0db7a85d7...93f7124c35138c75ba75ac029525173521384d2d
Commits (3)
2
· 0b79bdc8
ma yanling
authored
Sep 29, 2024
0b79bdc8
test-3
· fd11ca41
ma yanling
authored
Sep 29, 2024
fd11ca41
Merge branch 'v1.0.0' into 'main'
· 93f7124c
ma yanling
authored
Sep 29, 2024
test-2 See merge request
!2
93f7124c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
test-myl/test.java
test-myl/test.java
+8
-0
No files found.
test-myl/test.java
View file @
93f7124c
...
@@ -8,10 +8,18 @@ public class MyFirstApp
...
@@ -8,10 +8,18 @@ public class MyFirstApp
{
{
System
.
out
.
print
(
arr
[
i
]);
System
.
out
.
print
(
arr
[
i
]);
}
}
int
first
=
10
;
int
second
=
20
;
System
.
out
.
println
(
"输入两个数字: "
+
first
+
" "
+
second
);
int
sum
=
first
+
second
;
System
.
out
.
println
(
"总和: "
+
sum
);
}
}
}
}
public
class
Test
public
class
Test
{
{
//;
//;
test
;
}
}