Browse Source

add_divide

master
wangxinyu 1 week ago
parent
commit
eef57710b6
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      JJL.c

+ 4
- 0
JJL.c View File

@@ -9,6 +9,10 @@ int multiply(int a,int b)
{
return a * b;
}
int divide(int a,int b)
{
return a / b;
}
int sub(int a,int b)
{
return a-b;


Loading…
Cancel
Save