码迷,mamicode.com
首页 > 其他好文 > 详细

计算器

时间:2017-06-13 14:17:16      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:size   .com   layout   ack   png   main   ram   his   set   

public class LoginFrame extends Frame{
 public LoginFrame()
 {
     super("计算器");
     this.setSize(200,300);
     this.setLocation(300,240);
     this.setBackground(Color.lightGray);
     this.setLayout(new GridLayout());
     this.setLayout(new  GridLayout(5,6));
     String str[]={"MC","MR","MS","M-","M+","7","8","9","/","4","5","6","*","1","2","3","-","0",".","=","+"};
     for(int i=0;i<str.length;i++)
      this.add(new Button(str[i]));
     this.setVisible(true);
 }
    public static void main(String[] args) {new LoginFrame();}

 技术分享

 

计算器

标签:size   .com   layout   ack   png   main   ram   his   set   

原文地址:http://www.cnblogs.com/b983766/p/7000587.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!