• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

运用ASP.NET实现

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

calation.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

/// <summary>
///Calation 的摘要说明
/// </summary>
public class Calation
{
	public Calation()
	{
		//
		//TODO: 在此处添加构造函数逻辑
		//
	}
}
     interface ODD
    {
        int members(int a, int b);

    }
    class Class2 : ODD
    {

        public int members(int a, int b)
        {
            return a + b;
        }

    }
    class sub : ODD
    {
        public int members(int a, int b)
        {
            return a - b;
        }

    }
    class Mul : ODD
    {
        public int members(int a, int b)
        {
            return a * b;

        }

    }
    class Div : ODD
    {
        public int members(int a, int b)
        {
            return a / b;

        }
    }

   public class suanfa
    {
        private ODD jisuan;
        public void math(string TR)
        {
            switch (TR)
            {
                case "+":
                    jisuan = new Class2();
                    break;
                case "-":
                    jisuan = new sub();
                    break;
                case "*":
                    jisuan = new Mul();
                    break;
                case "/":
                    jisuan = new Div();
                    break;
            }

        }
        public int clation(int a, int b)
        {
            return jisuan.members(a, b);
        }
    }

 Default.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            rando();
        }

    }
    public void rando()
    {
        Random an = new Random();
        int a=an .Next(0,100);
        int b=an.Next(0,100);
        TextBox1.Text = a.ToString();
        TextBox3.Text = b.ToString();
        
        string [] ann=new string[]{"+","-","*","/"};

        TextBox2.Text = ann[new Random().Next(0, 4)];
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        int a = Convert.ToInt32(TextBox1.Text);
        int b = Convert.ToInt32(TextBox3.Text);
        suanfa suanfa1 = new suanfa();
        suanfa1.math(TextBox2.Text);
        int answer = suanfa1.clation(a, b);
        if (answer.ToString() == TextBox4.Text)
        {
            Response.Write("回答正确!");
        }
        else
        {
            Response.Write("回答错误!");
            Response.Write(answer.ToString());
        }
        TextBox4.Text = "";
        rando();
    }
}

  测试截图:

 

 

 

虽然界面简单 但还是用asp实现出来了。。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap