delphi 点击两个按钮在edit输出结果

我在设计一个计算器,打算点击两个SpeedButton后(一个是+,-,*,/,另一个是=),在edit里面得出结果!!!!急~~求高手..... 我在设计一个计算器,打算点击两个SpeedButton后(一个是+,-,*,/,另一个是 = ),在edit里面得出结果!!!! 急~~ 求高手.. 展开
 我来答
lyowz
2010-06-29 · 超过21用户采纳过TA的回答
知道答主
回答量:46
采纳率:0%
帮助的人:48.3万
展开全部
一个计算器的设计,唯一的结果是不可能只能通过两个SpeedButton就能得到想到的,最起码每一个运算符都有一个相应的响应事件才可以的。

如果说就是想要两个按钮实现,那 shiwangxu 他的回答还是不错的
在最后点击=时就把所有的可能性都计算一下:

procedure TForm1.SpeedButton1Click(Sender: TObject);
var
jg, fh: string;
rt : real;
begin
jg := edit2.Text +' '+ '+' +' '+ edit3.Text + ' = ';
rt := strtofloat(trim(edit2.Text))+strtofloat(trim(edit3.Text));//加法
jg:=jg+ floattostr(rt)+'; '+edit2.Text +' '+ '-' +' '+ edit3.Text + ' = ';
rt := strtofloat(trim(edit2.Text))-strtofloat(trim(edit3.Text));//减法
jg:=jg +floattostr(rt)+'; '+edit2.Text +' '+ '*' +' '+ edit3.Text + ' = ';
rt := strtofloat(trim(edit2.Text))*strtofloat(trim(edit3.Text));//乘法
jg:=jg+ floattostr(rt)+'; '+edit2.Text +' '+ '/' +' '+ edit3.Text + ' = ';
rt := strtofloat(trim(edit2.Text)) div strtofloat(trim(edit3.Text));//除法
jg:=jg+ floattostr(rt)+'; ';
edit1.text := jg;
end;
TableDI
2024-07-18 广告
在上海悉息信息科技有限公司,我们深知Excel在数据处理中的重要作用。在Excel中引用不同工作表(sheet)的数据是常见的操作,这有助于整合和分析跨多个工作表的信息。通过在工作表名称前加上感叹号“!”,您可以轻松地引用其他工作表中的数据... 点击进入详情页
本回答由TableDI提供
shiwangxu
2010-06-29 · 超过25用户采纳过TA的回答
知道答主
回答量:196
采纳率:0%
帮助的人:68.1万
展开全部
首先将SpeedButton1 Caption属性设成你的运算符号
procedure TForm1.SpeedButton1Click(Sender: TObject);
var
jg, fh: string;
rt : real;
begin
fh := SpeedButton1.Caption;
jg := edit2.Text +' '+ fh +' '+ edit3.Text + ' = ';
rt := strtofloat(trim(edit2.Text))+strtofloat(trim(edit3.Text));//加法
// rt := strtofloat(trim(edit2.Text))-strtofloat(trim(edit3.Text));//减法
// rt := strtofloat(trim(edit2.Text))*strtofloat(trim(edit3.Text));//乘法
// rt := strtofloat(trim(edit2.Text)) div strtofloat(trim(edit3.Text));//除法
edit1.text := jg + floattostr(rt);
end;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式