文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Web ASP.NET C#简单计算器

Web ASP.NET C#简单计算器

时间:2011-03-05  来源:湛蓝天空ZHW

前台代码如下:

<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem>选择</asp:ListItem>
<asp:ListItem>+</asp:ListItem>
<asp:ListItem>-</asp:ListItem>
<asp:ListItem>*</asp:ListItem>
<asp:ListItem>/</asp:ListItem>
<asp:ListItem>%</asp:ListItem>
</asp:DropDownList>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>=<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
</div>

后台代码如下:

protected void Button1_Click(object sender, EventArgs e)
{
double a = Convert.ToDouble(TextBox1.Text);
double b = Convert.ToDouble(TextBox2.Text);
string c = DropDownList1.Text;
double d = 0;
d
= Class1.Switch(a, b, c, d);
TextBox3.Text
= Convert.ToString(d);
}

调用Class1类中的Switch 方法:

public class Class1
{
//四则运算
public static double Switch(double a, double b, string c, double d)
{
switch (c)
{
case "+":
d
= a + b;
break;
case "-":
d
= a - b;
break;
case "*":
d
= a * b;
break;
case "/":
d
= a / b;
break;
case "%":
d
= a % b;
break;
default:
break;
}
return d;
}
}
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载