using system;
namespace TestAdd
{
public class TestAdd
{
public int Add(int a,int b) {return a+b;}
public double Add(double a,double b) {return a+b;}
public int Add(string a,string b)
{return Convert.ToInt32(a)+ Convert.ToInt32(b);}
}
class Test
{
public static void Main( )
{
TestAdd t=new TestAdd( );
t.Add(1,2);
t.Add(2.0,3.0);
t.Add(“3”, “4”);
t.Add(2,3.0);
t.Add(“2”,3.0);
}
}
}
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>