C#带小括号的运算
计算类的封装
jisuan.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ZY四则运算
{
public class jisuan
{
public Dictionary<char, int> priorities = null; //优先级
public void Calculator() //添加了四种运算符以及四种运算符的优先级
{
priorities = new Dictionary<char, int>();
priorities.Add();
priorities.Add();
priorities.Add();
priorities.Add();
priorities.Add();
}
const string operators = "+-*/"; //运算符
public double Compute(double leftNum, double rightNum, char op) //这是一种方法,用来计算左右两个数的静态方法!
{
switch (op)
{
case '+': return leftNum + rightNum;
case '-': return leftNum - rightNum;
case '*': return leftNum * rightNum;
case '/': return leftNum / rightNum;
;
}
}
public bool IsOperator(char op) //每次判断这个字符是否是运算符?
{
;
}
public bool IsAssoc(char op) //返回一个关联符号
{
return op == '+' || op == '-' || op == '*' || op == '/';
}
public Queue<object> QueueSort(string expression) // 队列排序
{
Queue<object> result = new Queue<object>();
Stack<char> operatorStack = new Stack<char>(); //运算符栈
operatorStack.Push('#');
char top, cur, tempChar; //top栈顶,current最近的;
string tempNum;
, j; i < expression.Length; ) //取出表达式
{
cur = expression[i++]; //取出表达式的每个字符赋给cur
top = operatorStack.Peek(); //栈顶元素赋给top此时为"#"
if (cur == '(') //将左括号压栈,此时栈顶元素为"("
{
operatorStack.Push(cur);
}
else
{
if (IsOperator(cur)) //如果是运算符的话
{
while (IsOperator(top) && ((IsAssoc(cur) && priorities[cur] <= priorities[top])) || (!IsAssoc(cur) && priorities[cur] < priorities[top]))
{
result.Enqueue(operatorStack.Pop()); //如果元素为运算符并且优先级小于栈顶元素优先级,出栈
top = operatorStack.Peek(); //继续把栈顶元素赋给top
}
operatorStack.Push(cur); //把数字压栈
}
else if (cur == ')') //将右括号添加到结尾
{
&& (tempChar = operatorStack.Pop()) != '(')
{
result.Enqueue(tempChar);
}
}
else
{
tempNum = "" + cur;
j = i;
')))
{
tempNum += expression[j++];
}
i = j;
result.Enqueue(tempNum);
}
}
}
)
{
cur = operatorStack.Pop();
if (cur == '#') continue;
)
{
top = operatorStack.Peek();
}
result.Enqueue(cur);
}
return result;
}
public double Calucate(string expression)
{
try
{
var rpn = QueueSort(expression);
Stack<double> operandStack = new Stack<double>();
double left, right;
object cur;
)
{
cur = rpn.Dequeue(); //出列
if (cur is char) //如果cur为字符的话
{
right = operandStack.Pop(); //右边的数字出栈
left = operandStack.Pop(); //左边的数字出栈
operandStack.Push(Compute(left, right, (char)cur)); //此时调用compute方法
}
else
{
operandStack.Push(double.Parse(cur.ToString())); //是数字就压栈
}
}
return operandStack.Pop();
}
catch
{
throw new Exception("表达式不正确!");
}
}
}
}
Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace ZY四则运算
{
public partial class Form1 : Form
{
Form2 frm2 = new Form2();
public Form1()
{
InitializeComponent();
}
private void button1_Click_1(object sender, EventArgs e)
{
string Express = textBox1.Text;
frm2.listBox1.Items.Add(Express);
listBox1.Items.Add(" " + Express + "=");
textBox1.Clear();
}
private void button2_Click(object sender, EventArgs e)
{
frm2.ShowDialog();
}
}
}
Form2.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace ZY四则运算
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
; //倒计时
;
;
private void Form2_Load(object sender, EventArgs e)
{
lblTime.Text = "剩余时间:";
timer1.Enabled = false;
timer1.Interval = ;
}
private void timer1_Tick(object sender, EventArgs e)
{
int tm = time--;
lblTime.Text = "剩余时间:" + tm.ToString() + "秒";
)
{
timer1.Enabled = false;
MessageBox.Show("时间已到", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
private void button1_Click_1(object sender, EventArgs e)
{
timer1.Stop();
MessageBox.Show(label1.Text);
}
private void button2_Click_1(object sender, EventArgs e)
{
timer1.Start();
}
private void button3_Click_1(object sender, EventArgs e)
{
sfd.Filter = "(*.txt)|*.txt";
if (sfd.ShowDialog() == DialogResult.OK)
{
string sPath = sfd.FileName;
FileStream fs = new FileStream(sPath, FileMode.Create);
StreamWriter sw = new StreamWriter(fs, Encoding.UTF8);
;
; i <= iCount; i++)
{
sw.WriteLine(listBox2.Items[i].ToString());
}
sw.Flush();
sw.Close();
fs.Close();
}
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
)
{
textBox1.Text = listBox1.Items[].ToString();
}
else
{
MessageBox.Show("答题结束");
}
}
private void textBox2_KeyDown(object sender, KeyEventArgs e)
{
jisuan js = new jisuan();
if (e.KeyCode == Keys.Enter)
{
string result = textBox1.Text;
if (textBox2.Text.Trim() == string.Empty) //去除空格之后,如果没答题给出提示。
{
MessageBox.Show("您尚未答题", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}
Count++;
if (textBox2.Text ==js.Calucate(result).ToString()) //直接调用Calucate这个方法计算result的值并与输入的值进行比较
{
MessageBox.Show("回答正确!");
listBox2.Items.Add(result + "=" + textBox2.Text + " " + "√");//若答对直接后面打个对勾。
listBox1.Items.Remove(listBox1.SelectedItem);
right++;
}
else
{
MessageBox.Show("答题错误!");
listBox2.Items.Add(result + "=" + textBox2.Text + " " + "×");//若答错就在后面打个错号。
listBox1.Items.Remove(listBox1.SelectedItem);
}
label1.Text = ).PadRight(, , ) + "%";
textBox1.Clear();
textBox2.Clear();
}
}
}
}
运行测试:
出题界面:

答题界面:

提示结束:

保存:

C#带小括号的运算的更多相关文章
- bash 括号(小括号,双小括号,中括号,双中括号,大括号)
小括号()和大括号{} 主要包括一下几种 ${var} $(cmd) ()和{} $((exp)) ${var:-string},${var:+string},${var:=string},${var ...
- shell中的括号(小括号,中括号,大括号)及单引号、 双引号,反引号(``)
一.小括号,园括号() 1.单小括号 () ①命令组.括号中的命令将会新开一个子shell顺序执行,所以括号中的变量不能够被脚本余下的部分使用.括号中多个命令之间用分号隔开,最后一个命令可以没有分号, ...
- Javascript小括号“()”的多义性
摘要:本文主要介绍JavaScript中小括号有五种语义. Javascript中小括号有五种语义 语义1,函数声明时参数表 function func(arg1,arg2){ // ... } 语义 ...
- shell中的大括号和小括号
1.shell中的大括号和小括号 1.${var} 2.$(cmd) 3.() 和 {} 4.${var:-string}, ${var:+string}, ${var:=string}, ...
- Javascript 中的小括号 “()” 的多义性
Javascript 中小括号有5 种语义 语义1:函数声明时参数表 1 function func(arg1, arg2){ 2 // ... 3 } 语义2:和一些语句联合使用以 ...
- js小括号的作用
js中小括号()的用法详解:对于小括号无论是菜鸟还是高手一定都不会陌生,可以说它几乎是随处可见,虽然熟悉但并非真正的理解,由此可能会产生很多莫名其妙的错误,下面就通过代码实例详细介绍一下小括号的用法. ...
- JavaScript小括号、中括号、大括号的多义性
语义1,函数声明时参数表 func(arg1,arg2){ // ... } 语义2,和一些语句联合使用以达到某些限定作用 // 和for in一起使用 for(var a in obj){ // . ...
- javascript 函数后面有多个小括号f( )( )( )...
有时我们看见js函数后面跟着多个小括号是什么意思?f( )( )( )... f()执行f函数,返回子函数 f()()执行子函数,返回孙函数 f()()()执行孙函数,返回重孙函数 ... ... 但 ...
- javascript小括号、中括号、大括号学习总结
作为一名编程人员,和括号打交道是必不可少的.你可知道在不同的上下文中,括号的作用是不一样的,今天就让我们简单总结下javascript小括号.中括号.大括号的用法. 总的来说,JavaScript中小 ...
随机推荐
- C# 计时器
一.Stopwatch 主要用于测试代码段使用了多少时间 使用方法: Stopwatch sw=new Stopwatch(); sw.Start(); ... sw.Stop(); Console. ...
- JS中的特有语句-for in
<script> /* *js中特有语句for in *for(变量 in 对象)//对对象进行变量的语句 *{ *} */ var arr = [32,80,65]; for(i in ...
- 【iCore3 双核心板_FPGA】实验十七:基于I2C总线的ARM与FPGA通信实验
实验指导书及代码包下载: http://pan.baidu.com/s/1dFqddMp iCore3 购买链接: https://item.taobao.com/item.htm?id=524229 ...
- pomotime_v1.7.2 番茄软件完全教程
资源下载:http://download.csdn.net/detail/xz_legendx/8546211 番茄规则和技巧 一个番茄时间共30分钟,包括25分钟的工作时间和5分钟的休息时间. ...
- 20145209&20145309信息安全系统设计基础实验报告 (3)
实验内容.步骤与体会: 实验过程的理解,实验指导书中知识点的理解. (1)为什么在双击了GIVEIO和JTAG驱动安装文件后还需要手动进行配置? 因为安装文件只是将驱动文件释放了出来,并没有在系统中将 ...
- json转换对象 对象属性首字母为大写会出错 可以用以下方法
package open_exe; import net.sf.json.JSONObject; import net.sf.json.JsonConfig; import net.sf.json.u ...
- 发布Mvc 项目 mvc.dll版本号不一致 出现 3.0.0.1 和4.0.0.1的解决方案
部署Mvc 项目的时候,很可能出现以下情况的提示: System.Web.Mvc, Version=3.0.0.1, Culture=neutral, PublicKeyToken=31bf3856a ...
- UINavigation Bar中使用UIcollectionView,在UIcollectionView的顶端和低端出现空白的问题
在含有UINavigation Bar的视图中,使用UIcollectionView,会在UIcollectionView的顶端和低端出现空白,需要添加下面 一句代码,空白即可消失 //如果不加这 ...
- mongoDb(2)聚合
1.mongodb的聚合是有专门的一个方法的.
- uniq-删除重复
uniq常用于管道中,用来删除已使用sort排序完成的重复记录. uniq有3个好用的选项: -c 可在每个输出行之前加上该行重复的次数: -d 仅显示重复的行 -u 仅显示未重复的行