zoukankan      html  css  js  c++  java
  • MathLibrary.cs

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace SampleLibrary
    {
        public class SimpleMath
        {
            public int Add(int a, int b)
            {
                return a + b;
            }

            public float Add(float a, float b)
            {
                return a + b;
            }

            public int Subtract(int a, int b)
            {
                return a - b;
            }

            public float Subtract(float a, float b)
            {
                return a - b;
            }

            public int Multiply(int a, int b)
            {
                return a * b;
            }

            public float Multiply(float a, float b)
            {
                return a * b;
            }

            public void monkeyTree()
            { }
        }
    }

  • 相关阅读:
    c# GDI+ 绘制矩形圆角
    ActivityManager
    PowerDesigner15 下载 数据库建模工具
    IaaS、PaaS和SaaS
    discuz 社区工具
    c# 字符串比较方法
    android adb 命令大全
    unity
    backtrack5 中文网
    aws
  • 原文地址:https://www.cnblogs.com/dushu/p/2513449.html
Copyright © 2011-2022 走看看