码迷,mamicode.com
首页 > 其他好文 > 详细

二阶段12.16(最后一天)

时间:2018-12-16 19:26:47      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:阶段   出现   没有   case   lse   24*   box   iso   三级   

  由于12.15日是四六级考试,我们没有时间来写,所以隔了一天更新。

  今天我们编写了等级判断程序,可以自动判断输入的等级进行计算与

检校。我们还对软件的各项进行了测试与使用,暂时未出现问题。

其中部分判断代码:

string str1 = comboBox1.Text;
string str2 = "图根导线";
string str3 = "一级导线";
string str4 = "二级导线";
string str5 = "三级导线";
string str6 = "四等导线";

if (str1.Equals(str2, StringComparison.OrdinalIgnoreCase) == true)
{ string a = "60*√n";
textBox2.Text = a;
textBox4.Text = "1/2000";
}
else if (str1.Equals(str3, StringComparison.OrdinalIgnoreCase) == true)
{string a = "10*√n";
textBox2.Text = a;
textBox4.Text = "1/15000";
}
else if (str1.Equals(str4, StringComparison.OrdinalIgnoreCase) == true)
{string a = "16*√n";
textBox2.Text = a;
textBox4.Text = "1/10000";
}
else if (str1.Equals(str5, StringComparison.OrdinalIgnoreCase) == true)
{
string a = "24*√n";
textBox2.Text = a;
textBox4.Text = "1/5000";
}
else if (str1.Equals(str6, StringComparison.OrdinalIgnoreCase) == true)
{
string a = "5*√n";
textBox2.Text = a;
textBox4.Text = "1/35000";
}
else
{
string a = "3.6*√n";
textBox2.Text = a;
textBox4.Text = "1/55000";
}

}

二阶段12.16(最后一天)

标签:阶段   出现   没有   case   lse   24*   box   iso   三级   

原文地址:https://www.cnblogs.com/wtctd/p/10127521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!