⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unit1.dfm

📁 实现数据结构中的数学中序表达式转换为后继表达式. 并且运算出后序表达式的结果. 运算符号包括 + - * / & | ! ( ) 加 减 乘 除 与 或 非
💻 DFM
字号:
object Form1: TForm1
  Left = 158
  Top = 162
  Width = 343
  Height = 476
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  PixelsPerInch = 96
  TextHeight = 13
  object Button1: TButton
    Left = 8
    Top = 32
    Width = 75
    Height = 25
    Caption = 'Push'
    TabOrder = 0
    OnClick = Button1Click
  end
  object Edit1: TEdit
    Left = 8
    Top = 8
    Width = 121
    Height = 21
    TabOrder = 1
    Text = 'Edit1'
  end
  object btn1: TButton
    Left = 8
    Top = 64
    Width = 75
    Height = 25
    Caption = 'Pop'
    TabOrder = 2
    OnClick = btn1Click
  end
  object mmo1: TMemo
    Left = 8
    Top = 96
    Width = 185
    Height = 321
    Lines.Strings = (
      'mmo1')
    TabOrder = 3
  end
  object Button2: TButton
    Left = 200
    Top = 120
    Width = 75
    Height = 25
    Caption = 'Change'
    TabOrder = 4
    OnClick = Button2Click
  end
  object Edit2: TEdit
    Left = 200
    Top = 96
    Width = 121
    Height = 21
    TabOrder = 5
    Text = '1+(2-3/4)*-5'
  end
  object Button3: TButton
    Left = 200
    Top = 152
    Width = 75
    Height = 25
    Caption = 'Calc'
    TabOrder = 6
    OnClick = Button3Click
  end
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -