// My car shopjava
import javaawt;
import javaawtevent;
import javaxswing;
import javaxswingborder;
public class carshop extends JFrame
{
// JPanel to hold all pictures
private JPanel windowJPanel;
private String[] cars = { "","阿斯顿马丁", "美洲虎", "凯迪拉克",
"罗孚", "劳斯莱斯","别克"};
private int[] jiage = { 0,150000, 260000, 230000,
140000, 290000, 150000};
// JLabels for first snack shown
private JLabel oneJLabel;
private JLabel oneIconJLabel;
// JLabels for second snack shown
private JLabel twoJLabel;
private JLabel twoIconJLabel;
// JLabels for third snack shown
private JLabel threeJLabel;
private JLabel threeIconJLabel;
// JLabels for fourth snack shown
private JLabel fourJLabel;
private JLabel fourIconJLabel;
// JLabels for fifth snack shown
private JLabel fiveJLabel;
private JLabel fiveIconJLabel;
// JLabels for sixth snack shown
private JLabel sixJLabel;
private JLabel sixIconJLabel;
// JTextField for displaying snack price
private JTextArea displayJTextArea;
// JLabel and JTextField for user input
private JLabel inputJLabel;
private JComboBox selectCountryJComboBox;
private JLabel inputJLabel2;
private JTextField inputJTextField2;
// JButton to enter user input
private JButton enterJButton;
//JButton to clear the components
private JButton clearJButton;
// no-argument constructor
public carshop()
{
createUserInterface();
}
// create and position GUI components; register event handlers
private void createUserInterface()
{
// get content pane for attaching GUI components
Container contentPane = getContentPane();
// enable explicit positioning of GUI components
contentPanesetLayout( null );
// set up windowJPanel
windowJPanel = new JPanel();
windowJPanelsetBounds( 10, 20, 340, 200 );
windowJPanelsetBorder( new LineBorder( ColorBLACK ) );
windowJPanelsetLayout( null );
contentPaneadd( windowJPanel );
// set up oneIconJLabel
oneIconJLabel = new JLabel();
oneIconJLabelsetBounds( 10, 20, 100, 65 );
oneIconJLabelsetIcon( new ImageIcon( "images/阿斯顿马丁jpg" ) );
windowJPaneladd( oneIconJLabel );
// set up oneJLabel
oneJLabel = new JLabel();
oneJLabelsetBounds( 10, 60, 100, 70 );
oneJLabelsetText( "阿斯顿马丁" );
oneJLabelsetHorizontalAlignment( JLabelCENTER );
windowJPaneladd( oneJLabel );
// set up twoIconJLabel
twoIconJLabel = new JLabel();
twoIconJLabelsetBounds( 120, 20, 100, 65 );
twoIconJLabelsetIcon( new ImageIcon( "images/美洲虎jpg" ) );
windowJPaneladd( twoIconJLabel );
// set up twoJLabel
twoJLabel = new JLabel();
twoJLabelsetBounds( 110, 60, 100, 70 );
twoJLabelsetText( "美洲虎" );
twoJLabelsetHorizontalAlignment( JLabelCENTER );
windowJPaneladd( twoJLabel );
// set up threeIconJLabel
threeIconJLabel = new JLabel();
threeIconJLabelsetBounds( 230, 20, 100, 65 );
threeIconJLabelsetIcon( new ImageIcon(
"images/凯迪拉克jpg" ) );
windowJPaneladd( threeIconJLabel );
// set up threeJLabel
threeJLabel = new JLabel();
threeJLabelsetBounds( 230, 60, 100, 70);
threeJLabelsetText( "凯迪拉克" );
threeJLabelsetHorizontalAlignment( JLabelCENTER );
windowJPaneladd( threeJLabel );
// set up fourIconJLabel
fourIconJLabel = new JLabel();
fourIconJLabelsetBounds( 10, 100, 100, 65 );
fourIconJLabelsetIcon( new ImageIcon( "images/罗孚jpg" ) );
windowJPaneladd( fourIconJLabel );
// set up fourJLabel
fourJLabel = new JLabel();
fourJLabelsetBounds( 10, 150, 50, 70 );
fourJLabelsetText( "罗孚" );
fourJLabelsetHorizontalAlignment( JLabelCENTER );
windowJPaneladd( fourJLabel );
// set up fiveIconJLabel
fiveIconJLabel = new JLabel();
fiveIconJLabelsetBounds( 120, 100, 100, 65 );
fiveIconJLabelsetIcon( new ImageIcon(
"images/劳斯莱斯jpg" ) );
windowJPaneladd( fiveIconJLabel );
// set up fiveJLabel
fiveJLabel = new JLabel();
fiveJLabelsetBounds( 110, 150, 100, 70 );
fiveJLabelsetText( "劳斯莱斯" );
fiveJLabelsetHorizontalAlignment( JLabelCENTER );
windowJPaneladd( fiveJLabel );
// set up sixIconJLabel
sixIconJLabel = new JLabel();
sixIconJLabelsetBounds( 230, 100, 100, 65 );
sixIconJLabelsetIcon( new ImageIcon( "images/别克jpg" ) );
windowJPaneladd( sixIconJLabel );
// set up sixJLabel
sixJLabel = new JLabel();
sixJLabelsetBounds( 230, 150, 100, 70 );
sixJLabelsetText( "别克" );
sixJLabelsetHorizontalAlignment( JLabelCENTER );
windowJPaneladd( sixJLabel );
// set up enterJButton
enterJButton = new JButton();
enterJButtonsetBounds( 390, 160, 135, 30 );
enterJButtonsetText( "Enter" );
contentPaneadd( enterJButton );
enterJButtonaddActionListener(
new ActionListener() // anonymous inner class
{
// event handler called when enterJButton is clicked
public void actionPerformed( ActionEvent event )
{
enterJButtonActionPerformed( event );
}
} // end anonymous inner class
); // end call to addActionListener
// set up clearJButton
clearJButton = new JButton();
clearJButtonsetBounds( 390, 200, 135, 30 );
clearJButtonsetText( "Clear" );
contentPaneadd( clearJButton );
// set up inputJLabel
inputJLabel = new JLabel();
inputJLabelsetBounds( 390, 25, 135, 25 );
inputJLabelsetText( "Please make selection:" );
contentPaneadd( inputJLabel );
selectCountryJComboBox = new JComboBox( cars );
selectCountryJComboBoxsetBounds( 390, 50, 135, 21 );
selectCountryJComboBoxsetMaximumRowCount( 3 );
contentPaneadd( selectCountryJComboBox );
// set up inputJTextField
inputJLabel2 = new JLabel();
inputJLabel2setBounds( 390, 80, 150, 20 );
inputJLabel2setText( "Input the Numble:" );
contentPaneadd( inputJLabel2 );
// set up inputJTextField
inputJTextField2 = new JTextField();
inputJTextField2setBounds( 390, 100, 135, 25 );
inputJTextField2setHorizontalAlignment( JTextFieldRIGHT );
contentPaneadd( inputJTextField2 );
clearJButtonaddActionListener(
new ActionListener() // anonymous inner class
{
// event handler called when clearJButton is clicked
public void actionPerformed( ActionEvent event )
{
clearJButtonActionPerformed( event );
}
} // end anonymous inner class
);
// set up displayJTextField
displayJTextArea = new JTextArea();
displayJTextAreasetBounds( 10, 237,515, 70 );
displayJTextAreasetEditable( false );
contentPaneadd( displayJTextArea );
// set properties of application's window
setTitle( "My car Shop" ); // set title bar string
setSize( 550, 360 ); // set window size
setVisible( true ); // display window
} // end method createUserInterface
private void clearJButtonActionPerformed( ActionEvent event )
{
// clear the JTextFields
inputJTextField2setText( "" );
displayJTextAreasetText("");
} // end method clearJButtonActionPerformed
private void enterJButtonActionPerformed( ActionEvent event )
{
double z;
double c;
int x;
int y;
x=selectCountryJComboBoxgetSelectedIndex();
y=IntegerparseInt(inputJTextField2getText());
double discountRate;
int amount = IntegerparseInt( inputJTextField2getText());
switch (amount/5)
{
case 0:
discountRate = 0;
break;
case 1:
discountRate = 1;
break;
case 2:
discountRate = 2;
break;
case 3:
discountRate = 3;
break;
default:
discountRate = 4;
} // end switch statement
c=1-discountRate/100;
z=jiage[x]yc;
displayJTextAreaappend("你选择的是:"+cars[x]+";"+
"它的单价是:"+jiage[x]+";" +"你购买该产品的数量是:"+y+"," +"\n"+"该数量的折扣是:"
+discountRate + " %"+";"+"本次消费的总价格是:"+z+"元"+"!"+"\n");
}
public static void main( String args[] )
{
carshop application = new carshop();
applicationsetDefaultCloseOperation( JFrameEXIT_ON_CLOSE );
} // end method main
} // end class carshop
是的,微信小程序可以通过合作**公司等在线购买**。但由于相关法律法规的限制,不同地区的微信小程序在**的种类和功能上存在一定的差异,因此不同地区的微信小程序在**方面的功能有所不同。
福彩刮刮乐微信购买方式:进入微信主界面点击发现,点击小程序,在小程序中搜索**即可购买。
彩民朋友购买刮刮乐后,兑奖时刮开**保安区,点击福彩自助终端上的扫码兑奖扫描保安区后即完成兑奖。若**中奖,奖金在一万元以下的将免费直接转入彩民微信账户中,中奖金额在一万元以上的,系统会显示无兑奖权限,彩民须持中奖**及本人身份z到当地市福彩中心办理兑奖。
刮刮乐是一种网点即开型福利**,返奖率65%。刮刮乐以扶老、助残、救孤、济困为发行目的,即买即开,刮刮乐是由中国福利**部门发行的,包含多种形式。
福彩刮刮乐相关知识
一般每包的**各个投注站拿6-10个点不等代理商拿25左右,这要看当地**中心给投注站的返点了,福彩是代理商手中拿的货。
刮开城堡形状的玩法区,找到第一关至第五关的数字,从起点开始,第一关的数字是几,就在闯关图上冲几步,如果停到中奖金额上,即中该金额的奖金,在第一关的基础上,第二关的数字是几,向前再冲几步,如果停到中奖金额上,即为中的奖金,中奖奖金兼中兼得,其余为无奖。
返奖率是指用来返还彩民的奖金在销售额中所占的比例,中奖率则是指在某种**的游戏规则中,所有符合中奖条件的注数在总注数中所占的比例。
微信购买福利**的方法具体如下:
1、登录自己的微信,用手下滑屏幕,会出现小程序这个功能。
2、在小程序搜索框里输入**,下面会出现**种类,选择自己喜欢的**。
3、进入**以后可以直接选择自己喜欢的号码,还可以选择模拟玩法进行试玩。
4、绑定自己的手机号码,按照页面要求填入手机号和验证码进行绑定。
5、可以选择自己需要购买多少注**号码,按照页面显示的按钮进行 *** 作就可以了。
微信体育**小程序是一个提供福利**和体育**购买服务的平台,用户可以通过该小程序购买各种类型的**。但需要注意的是,在中国大陆地区,目前仅有几个省份开放了网上销售福利**和体育**的渠道,其他地区暂时还不能在网上购买。
此外,在使用微信体育**小程序进行购买时,需要先完成实名认证并绑定yhk等支付方式。同时也要遵守相关法律法规,并且谨慎对待投注风险。
总之,在合法、安全、理性的前提下,您可以尝试使用微信体育**小程序进行购买。
微信小程序里面有个**微助手,里面是可以买**的。第一步:进入微信主界面点击“发现,第二步:点击小程序。第三步:键入“**微助手”并点击搜索,第四步:选择你要的红球码和蓝球码,选好付款就可以了。
以上就是关于java小程序源代码,简单点的,100多行,谁有啊全部的内容,包括:java小程序源代码,简单点的,100多行,谁有啊、微信小程序能买彩票吗、福彩刮刮乐微信怎么购买等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)