|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
没有那个大公司会傻了吧唧用.net网页编程开发大型项目,开发了,那等于自己一半的生命线被微软握着呢。而.net网页编程不行,限制在window系统,又是捆绑,鄙视微软之!
明天偶作一双色球复式投注盘算。实在很复杂,盘算出组合数便可。界面计划接纳AWT,列表框的值选中以后,引发itemStateChanged事务举行处置。上面是实例:
packagestudy;
importjava.awt.*;
importjava.awt.event.*;
publicclassssqextendsFrame//implementsActionListener
{
Labela=newLabel("请选择红球和篮球号码:");
Labelsta=newLabel("感谢利用世讯通软件!CopyrightbyMr.Zhou;firstcoffee@sina.com;OICQ:5129575");
Panelp=newPanel();
Panelp1=newPanel();
TextAreata=newTextArea();
Listh=newList(4);
Listl=newList(4);
Buttonbn=newButton("扫除");
longtmp_count;
inttmp_r,tmp_b;
publiCSSq()
{
super("双色球复式盘算");
setSize(500,310);
for(inti=7;i<=20;i++)
{
h.addItem(String.valueOf(i));
}
for(inti=1;i<=16;i++)
{
l.addItem(String.valueOf(i));
}
h.setBackground(Color.ORANGE);
l.setBackground(Color.blue);
h.select(0);
l.select(0);
p.add(a);
p.add(h);
p.add(l);
p.add(bn);
p1.add(ta);
p1.add(sta);
add("North",p);
add("Center",p1);
addWindowListener(newWindowAdapter()
{
publicvoidwindowClosing(WindowEvente)
{
System.exit(0);
}
});
ta.append("盘算了局:"+"
");
h.addItemListener(newItemListener()
{
publicvoiditemStateChanged(ItemEvente){
tmp_r=Integer.parseInt(h.getSelectedItem());
}
});
l.addItemListener(newItemListener()
{
publicvoiditemStateChanged(ItemEvente1){
tmp_b=Integer.parseInt(l.getSelectedItem());
print(tmp_r,tmp_b);
}
});
bn.addActionListener(newActionListener(){
public voidactionPerformed(ActionEvente)
{
ta.setText("盘算了局:"+"
");
}
}
);
super.setResizable(false);
show();
}
longcount(intx,inty)
{
longtmp_count1; //fdfdfdfdfd
inta,b;
longp=1,c=1;
a=x;b=y;
for(inti=1;i<=6;i++)
{
c=c*i;
}
for(intj=(a-5);j<=a;j++)
{
p=p*j;
}
//System.out.println(p);
tmp_count1=p/c*b;
returntmp_count1;
}
voidprint(intx1,inty1)
{longtmp_count2;
tmp_count2=count(x1,y1);
//System.out.println("tmp_count2="+tmp_count2);
ta.append(tmp_r+"个红球加"+tmp_b+"个蓝球"+"总金额:"+tmp_count2*2+"
");
}
publicstaticvoidmain(Stringarg[])
{
newssq();
}
}
**************停止
但是一些大型开发或者是保密型比较高的项目都会用java,原因有2点,一:java是开源的,不怕别人留后门,偷我工具,.net网页编程就不一样了,保持微软的一向风格,源代码不公开 |
|