编了个delphi的程。但是edit3不显示计算机结果。并且‘清空’功能按钮不能清空edit1.

unityouwenti;interfaceusesWindows,Messages,SysUtils,Variants,Classes,Graphics,Control... unit youwenti;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls;

type
TForm3 = class(TForm)
RadioGroup1: TRadioGroup;
Edit1: TEdit;
Edit2: TEdit;
Edit3: TEdit;
Button1: TButton;
Button2: TButton;
GroupBox1: TGroupBox;
CheckBox1: TCheckBox;
CheckBox2: TCheckBox;
procedure RadioGroup1Click(Sender: TObject);
procedure CheckBox1Enter(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form3: TForm3;

implementation

{$R *.dfm}

procedure TForm3.Button2Click(Sender: TObject);
begin
form3.Close; //退出按钮
end;

procedure TForm3.CheckBox1Enter(Sender: TObject);
begin
if checkbox1.Checked then //清空按钮 问题出现的地方
edit1.Clear;
edit2.Clear;
edit3.Clear;
end;

procedure TForm3.RadioGroup1Click(Sender: TObject);
var
x,y,z:integer;
begin
x:=strtoint(edit1.Text);
y:=strtoint(edit2.Text);
case radiogroup1.ItemIndex of //选择运算符
0:z:=x+y;
1:z:=x-y;
2:z:=x*y;
3:z:=x div y;
end;
edit3.Text:=inttostr(z);//输出结果 问题是无结果
if radiogroup1.ItemIndex=3 then //除法的显示余数按钮选择是输出结果
if checkbox2.Checked then
edit3.Text:=edit3.Text+'余'+inttostr(x mod y);

end;

end.
展开
 我来答
改润0iT58e
2013-06-05 · TA获得超过721个赞
知道小有建树答主
回答量:823
采纳率:80%
帮助的人:529万
展开全部
不是 CheckBox1Enter ,
是 CheckBox1Click ..
procedure TForm3.CheckBox1Click(Sender: TObject);
begin
if CheckBox1.Checked then
begin
Edit1.Clear;
Edit2.Clear;
Edit3.Clear;
end;
end;

不用 RadioGroup1Click
要用 Button1Click

z为integer, x div y 不一定是integer
如果不是integer , inttostr时会报错..
这个也要考虑进去
金山毒霸
2024-10-31 广告
电脑在启动游戏或软件的时候,桌面弹出错误提示框“0xc0000094”,应该怎么办?电脑报错,很大可能是因为某些DLL文件出现了异常,比如感染了病毒、DLL文件丢失等。解决方法如下:一、 手动解决方法1、先确定电脑操作系统是多少位的,现在的... 点击进入详情页
本回答由金山毒霸提供
gibyou
2013-06-05 · TA获得超过123个赞
知道答主
回答量:129
采纳率:0%
帮助的人:94.2万
展开全部
edit1.Clear;换成Edit1.Text:='';
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式