摘要: using system; using system.collections.generic; using system.linq; using system.text; using system.threading.tasks; namespace consoleapplication3 { cl 阅读全文
posted @ 2021-04-11 23:18 计应191西三组 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 阅读全文
posted @ 2021-04-11 23:09 计应191西三组 阅读(47) 评论(0) 推荐(0) 编辑
摘要: using system;using system.collections.generic;using system.linq;using system.text;using system.threading.tasks; namespace consoleapplication3{ class p 阅读全文
posted @ 2021-04-11 23:04 计应191西三组 阅读(39) 评论(0) 推荐(0) 编辑
摘要: namespace 四则运算{ class Program { static void Main(string[] args)//在主函数中,通过键盘输入两个数x,y。并对四个函数进行调用。 { int x; int y; Console.Write("请输入第一个数"); x = Convert. 阅读全文
posted @ 2021-04-11 23:01 计应191西三组 阅读(23) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions; namespace ConsoleApplication1{ class Class1 { pr 阅读全文
posted @ 2021-04-11 23:00 计应191西三组 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 作业目标] 能够精准高效完成四则运算并输出结果; 代码如下: #include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> void add_oper();//加法运算 void sub_oper();//减法运 阅读全文
posted @ 2021-04-11 19:29 计应191西三组 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 这个表显示的是栈外的运算符与栈内运算符之间对比的优先级表。我们可以将上面的表达式入队,然后进行压栈和出栈操作,来得出后序表达式。在表达式后面加一个“#”运算符,那么表达式就是(A+B)*C+E/D#,入队后就是#D/E+C*)B+A(,“#”为队尾元素,”(“为队头元素。设置一个栈,栈顶元素为”#” 阅读全文
posted @ 2021-04-11 12:21 计应191西三组 阅读(54) 评论(0) 推荐(0) 编辑