个人开发流程

2021/4/11 18:28:10

本文主要是介绍个人开发流程,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

计应191西 第六组张晴敏

 

四则运算代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _Math
{
    class program
    {
        static void Main(string[] args)
        {
            mathvoid op = new mathvoid();
            string Z = "";
            do
            {
                Console.WriteLine("-------------------------------四则运算-------------------------");
                Console.WriteLine("");
                Console.WriteLine("请选择您使用的运算方法:1.加法 2.减法 3.乘法 4.除法 5.退出!");
                Z = Console.ReadLine();
                switch (Z)
                {
                    case "1":
                        op.mathjia();
                        continue;
                    case "2":
                        op.mathjian();
                        continue;
                    case "3":
                        op.mathcheng();
                        continue;
                    case "4":
                        op.mathchu();
                        continue;
                    case "5":
                        op.result();
                        break;
                    default:
                        Console.WriteLine("输入无效!");
                        continue;
                }
                break;
            }
            while (true);
        }
    }
}
单元测试

TEST_METHOD(TestAdd) 
{
Test.CheckInput("1/2+4");
Assert::AreEqual(test11,Test.add());
}
TEST_METHOD(TestAdd1)
{
Test.CheckInput("3+1/3");
Assert::AreEqual(test12, Test.add());
}
TEST_METHOD(TestAdd2)
{
Test.CheckInput("2+4");
Assert::AreEqual(test13, Test.add());
}
TEST_METHOD(TestAdd3)
{
Test.CheckInput("1/2+1/4");
Assert::AreEqual(test14, Test.add());
}



这篇关于个人开发流程的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程