我现在的作法在按下"加,减,乘,除"后 显示的栏位会先变0 在按下之后的数字才会显示总和
请问要如何才能再按下"加,减,乘,除"后数字不变?
例如:按下1再按下"加"后 在栏位还是显示1 之后按下要加的数字在显示总和
另外ㄧ个问题是该怎样才能够让按钮1-9是由左往右边显示呢?
现在做出来的 希望做的
9 8 7 7 8 9
6 5 4 4 5 6
3 2 1 1 2 3
麻烦各位大大无私的教学ㄧ下了
import java.awt.*;
import java.awt.event.*;
public class Calculating
{
private static Frame frm=new Frame("小算盘");
private static Panel pn1=new Panel(new GridLayout(4,3));
private static Panel pn2=new Panel(new GridLayout(4,3));
private static Label lab=new Label("0",Label.RIGHT);
private static Button cn,ad,sub,mul,div,amo;
private static Button digits[]=new Button;
private static long num;
private static byte op;
public static void main(String args[])
{
frm.setLayout(null);
frm.setBounds(450,250,160,180);
frm.setResizable(false);
lab.setBounds(20,30,120,20);
lab.setBackground(new Color(240,220,190));
pn1.setBounds(20,60,90,105);
pn2.setBounds(110,60,30,105);
for(int i=9;i>=0;i--)
{
digits=new Button(Integer.toString(i));
pn1.add(digits);
digits.addAc ..
访客只能看到部份内容,免费 加入会员 或由脸书 Google 可以看到全部内容