摘要: 四则运算 代码如下: using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace ConsoleApplication1{ class Program { static vo 阅读全文
posted @ 2021-04-11 22:14 计应191西七组 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 代码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using S 阅读全文
posted @ 2021-04-11 21:51 计应191西七组 阅读(48) 评论(1) 推荐(0) 编辑
摘要: 郑州地铁计费系统 用窗体完成开发,代码如下。 public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs 阅读全文
posted @ 2021-04-11 20:40 计应191西七组 阅读(52) 评论(1) 推荐(0) 编辑
摘要: 四则运算 核心代码: using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions; namespace ConsoleApplication1{ class 阅读全文
posted @ 2021-04-11 18:41 计应191西七组 阅读(55) 评论(1) 推荐(0) 编辑
摘要: 作业需求:编写四则运算。 程序: namespace 计算器 { public List<string> InorderToPostorder(Queue<string> q) { List<string> posterOrder = new List<string>(); Stack<string 阅读全文
posted @ 2021-04-11 17:48 计应191西七组 阅读(51) 评论(1) 推荐(0) 编辑
摘要: 需求分析: 设计一个简单的四则运算 程序: 1 public class Calculator 2 { 3 public Calculator() 4 { 5 _OptStack = new Stack<char>(); 6 _SuffixStack = new Stack<float>(); 7 阅读全文
posted @ 2021-04-11 17:34 计应191西七组 阅读(58) 评论(1) 推荐(0) 编辑
摘要: 计应191西第七组杨梦醒 作业需求:编写四则运算。 程序: namespace 计算器 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public string num; public 阅读全文
posted @ 2021-04-11 17:20 计应191西七组 阅读(56) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/yangjiahe/articles/14644296.html 阅读全文
posted @ 2021-04-11 16:36 计应191西七组 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 作业需求:编写四则运算,让用户在控制台输入数字和运算符求得结果。(不能输入数字以外的字符、不能输入+ - * /以外的运算符。) namespace CSbaseDemo3 { class Program { static void Main(string[] args) { Console.Wri 阅读全文
posted @ 2021-04-11 16:33 计应191西七组 阅读(55) 评论(1) 推荐(0) 编辑