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_divide
master
wangxinyu
1 week ago
parent
420240b5ad
commit
eef57710b6
1 changed files
with
4 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
JJL.c
+ 4
- 0
JJL.c
View File
@@ -9,6 +9,10 @@ int multiply(int a,int b)
{
{
return a * b;
return a * b;
}
}
int divide(int a,int b)
{
return a / b;
}
int sub(int a,int b)
int sub(int a,int b)
{
{
return a-b;
return a-b;
Write
Preview
Loading…
Cancel
Save