This website works better with JavaScript.
Home
Explore
Help
Sign In
wangxinyu2
/
group_practice
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
add_multiply
master
wangxinyu
6 days ago
parent
3257609a3f
commit
420240b5ad
2 changed files
with
5 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
.gitignore
+4
-0
JJL.c
+ 1
- 0
.gitignore
View File
@@ -1 +1,2 @@
patch/
.vscode/
+ 4
- 0
JJL.c
View File
@@ -5,6 +5,10 @@ int add(int a,int b)
return a + b;
}
int multiply(int a,int b)
{
return a * b;
}
int sub(int a,int b)
{
return a-b;
Write
Preview
Loading…
Cancel
Save