Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
RINONIN committed Jan 18, 2021
1 parent 9db69c1 commit 7d2f6f8
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
11 changes: 11 additions & 0 deletions adda.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include<stdio.h>
int main()//主函数
{
int a=0;
int b=0;
int sum;
scanf("%d%d",&a,&b);
sum=a+b;
printf("sum=%d\n",sum);
return 0;
}
Binary file added adda.exe
Binary file not shown.
7 changes: 5 additions & 2 deletions short.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#include<stdio.h>
int a=100;
int main()
{
float weight=95.6;
return 0;
{int a=20;}
printf("%d\n",a);
//float weight=95.6;
//return 0;
}
Binary file removed short.exe
Binary file not shown.

0 comments on commit 7d2f6f8

Please sign in to comment.