Skip to content

Commit

Permalink
caculate.cs is created .
Browse files Browse the repository at this point in the history
  • Loading branch information
listento123 committed Sep 7, 2022
0 parents commit aab1525
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions caculate.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
public static class caculate
{
public int add(int a,int b)
{
return a+b;
}
public int max(int a int b)
{
if(a>b)
return a;
else
return b;
}
}

0 comments on commit aab1525

Please sign in to comment.