我現在的作法在按下"加,減,乘,除"後 顯示的欄位會先變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 可以看到全部內容