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
回滚操作
JJL
JIU JIALIN
1 week ago
parent
e10c013a27
commit
f5f448db32
2 changed files
with
28 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-1
.gitignore
+28
-0
JJL.c
+ 0
- 1
.gitignore
View File
@@ -1,3 +1,2 @@
patch/
.vscode/
./JJL.c
+ 28
- 0
JJL.c
View File
@@ -0,0 +1,28 @@
#include "stdio.h"
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;
}
void my_printf(int a)
{
printf("\r\n\r\n%d\r\n\r\n",a);
}
int main()
{
printf("hello world!");
return 0;
}
Write
Preview
Loading…
Cancel
Save