文件名称:c#计算器,可以学习C#语言
文件大小:325KB
文件格式:RAR
更新时间:2014-02-13 04:54:43
c#
namespace 多功能计算机器 { public class Form : System.Windows.Forms.Form { private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox expressBox; private System.ComponentModel.Container components = null; //***往下为自已定义的变量*** //定义存放运算符(包括:'+','-',...,'sin',...,'arcsin',...,'(',...等)及其特性的数据结构 public struct opTable //定义存放运算符及其优先级和单双目的结构 { public string op; //用于存放运算符 op为oprater的简写 public int code; //用存放运算符的优先级 public char grade; //用于判断存放的运算符是单目还是双目 } public opTable[] opchTbl=new opTable[19]; //用于存放制定好的运算符及其特性(优先级和单双目)的运算符表,其初始化在方法Initialize()中 public opTable[] operateStack=new opTable[30]; //用于存放从键盘扫描的运算符的栈 //定义优先级列表 1,2,3,4,5,6,7,8,9, public int[]osp=new int[19]{6,6,6,6,6,
【文件预览】:
多功能计算器.csproj
Form1.cs
bin
----Debug()
--------第一个窗口程序.exe(68KB)
--------第一个窗口程序.pdb(50KB)
----Release()
--------第一个窗口程序.vshost.exe(14KB)
--------第一个窗口程序.vshost.exe.manifest(490B)
--------第一个窗口程序.exe(60KB)
obj
----Debug()
--------第一个窗口程序.exe.incr(2KB)
--------第一个窗口程序.Form1.resources(324B)
--------temp()
--------第一个窗口程序.exe(68KB)
--------TempPE()
--------多功能计算器.projdata(41KB)
--------第一个窗口程序.projdata(24KB)
--------第一个窗口程序.pdb(50KB)
----Release()
--------第一个窗口程序.Form.resources(224KB)
--------多功能计算器.csproj.FileListAbsolute.txt(959B)
--------多功能计算器.csproj.GenerateResource.Cache(774B)
--------temp()
--------第一个窗口程序.exe(60KB)
--------多功能计算机器.Form.resources(22KB)
--------TempPE()
--------多功能计算器.projdata(23KB)
App.ico
Form1.resx
多功能计算器.sln
多功能计算器.suo
多功能计算器.csproj.user
AssemblyInfo.cs