本站提倡有节制游戏,合理安排游戏时间,注意劳逸结合。

【正方系统源码】【android源码调试】【源码分享美食】java手机版简单源码_java手机版简单源码怎么用

2024-11-15 01:34:55 来源:综合 分类:综合

1.java?手机a手ֻ????Դ??
2.Java简单代码?

java手机版简单源码_java手机版简单源码怎么用

java?ֻ????Դ??

       // My car shop.java

       import java.awt.*;

       import java.awt.event.*;

       import javax.swing.*;

       import javax.swing.border.*;

       public class carshop extends JFrame

       {

        // JPanel to hold all pictures

        private JPanel windowJPanel;

        private String[] cars = { "","阿斯顿马丁", "美洲虎", "凯迪拉克",

        "罗孚", "劳斯莱斯","别克"};

        private int[] jiage = { 0,, , ,

        , , };

        // 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

        contentPane.setLayout( null );

        // set up windowJPanel

        windowJPanel = new JPanel();

        windowJPanel.setBounds( , , , );

        windowJPanel.setBorder( new LineBorder( Color.BLACK ) );

        windowJPanel.setLayout( null );

        contentPane.add( windowJPanel );

        // set up oneIconJLabel

        oneIconJLabel = new JLabel();

        oneIconJLabel.setBounds( , , , );

        oneIconJLabel.setIcon( new ImageIcon( "images/阿斯顿马丁.jpg" ) );

        windowJPanel.add( oneIconJLabel );

        // set up oneJLabel

        oneJLabel = new JLabel();

        oneJLabel.setBounds( , , , );

        oneJLabel.setText( "阿斯顿马丁" );

        oneJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( oneJLabel );

        // set up twoIconJLabel

        twoIconJLabel = new JLabel();

        twoIconJLabel.setBounds( , , , );

        twoIconJLabel.setIcon( new ImageIcon( "images/美洲虎.jpg" ) );

        windowJPanel.add( twoIconJLabel );

        // set up twoJLabel

        twoJLabel = new JLabel();

        twoJLabel.setBounds( , , , );

        twoJLabel.setText( "美洲虎" );

        twoJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( twoJLabel );

        // set up threeIconJLabel

        threeIconJLabel = new JLabel();

        threeIconJLabel.setBounds( , , , );

        threeIconJLabel.setIcon( new ImageIcon(

        "images/凯迪拉克.jpg" ) );

        windowJPanel.add( threeIconJLabel );

        // set up threeJLabel

        threeJLabel = new JLabel();

        threeJLabel.setBounds( , , , );

        threeJLabel.setText( "凯迪拉克" );

        threeJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( threeJLabel );

        // set up fourIconJLabel

        fourIconJLabel = new JLabel();

        fourIconJLabel.setBounds( , , , );

        fourIconJLabel.setIcon( new ImageIcon( "images/罗孚.jpg" ) );

        windowJPanel.add( fourIconJLabel );

        // set up fourJLabel

        fourJLabel = new JLabel();

        fourJLabel.setBounds( , , , );

        fourJLabel.setText( "罗孚" );

        fourJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( fourJLabel );

        // set up fiveIconJLabel

        fiveIconJLabel = new JLabel();

        fiveIconJLabel.setBounds( , , , );

        fiveIconJLabel.setIcon( new ImageIcon(

        "images/劳斯莱斯.jpg" ) );

        windowJPanel.add( fiveIconJLabel );

        // set up fiveJLabel

        fiveJLabel = new JLabel();

        fiveJLabel.setBounds( , , , );

        fiveJLabel.setText( "劳斯莱斯" );

        fiveJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( fiveJLabel );

        // set up sixIconJLabel

        sixIconJLabel = new JLabel();

        sixIconJLabel.setBounds( , , , );

        sixIconJLabel.setIcon( new ImageIcon( "images/别克.jpg" ) );

        windowJPanel.add( sixIconJLabel );

        // set up sixJLabel

        sixJLabel = new JLabel();

        sixJLabel.setBounds( , , , );

        sixJLabel.setText( "别克" );

        sixJLabel.setHorizontalAlignment( JLabel.CENTER );

        windowJPanel.add( sixJLabel );

       // set up enterJButton

        enterJButton = new JButton();

        enterJButton.setBounds( , , , );

        enterJButton.setText( "Enter" );

        contentPane.add( enterJButton );

        enterJButton.addActionListener(

        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();

        clearJButton.setBounds( , , , );

        clearJButton.setText( "Clear" );

        contentPane.add( clearJButton );

        // set up inputJLabel

        inputJLabel = new JLabel();

        inputJLabel.setBounds( , , , );

        inputJLabel.setText( "Please make selection:" );

        contentPane.add( inputJLabel );

        selectCountryJComboBox = new JComboBox( cars );

        selectCountryJComboBox.setBounds( , , , );

        selectCountryJComboBox.setMaximumRowCount( 3 );

        contentPane.add( selectCountryJComboBox );

        // set up inputJTextField

       inputJLabel2 = new JLabel();

        inputJLabel2.setBounds( , , , );

        inputJLabel2.setText( "Input the Numble:" );

        contentPane.add( inputJLabel2 );

        // set up inputJTextField

        inputJTextField2 = new JTextField();

        inputJTextField2.setBounds( , , , );

        inputJTextField2.setHorizontalAlignment( JTextField.RIGHT );

        contentPane.add( inputJTextField2 );

        clearJButton.addActionListener(

        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();

        displayJTextArea.setBounds( , ,, );

        displayJTextArea.setEditable( false );

        contentPane.add( displayJTextArea );

        // set properties of application's window

        setTitle( "My car Shop" ); // set title bar string

        setSize( , ); // set window size

        setVisible( true ); // display window

        } // end method createUserInterface

        private void clearJButtonActionPerformed( ActionEvent event )

        {

        // clear the JTextFields

        inputJTextField2.setText( "" );

        displayJTextArea.setText("");

        } // end method clearJButtonActionPerformed

        private void enterJButtonActionPerformed( ActionEvent event )

        {

        double z;

        double c;

        int x;

        int y;

        x=selectCountryJComboBox.getSelectedIndex();

        y=Integer.parseInt(inputJTextField2.getText());

        double discountRate;

        int amount = Integer.parseInt( inputJTextField2.getText());

        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/;

        z=jiage[x]*y*c;

        displayJTextArea.append("你选择的是:"+cars[x]+";"+

       "它的单价是:"+jiage[x]+";" +"你购买该产品的数量是:"+y+"," +"\n"+"该数量的版简正方系统源码折扣是:"

        +discountRate + " %"+";"+"本次消费的总价格是:"+z+"元"+"!"+"\n");

        }

        public static void main( String args[] )

        {

        carshop application = new carshop();

        application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );

        } // end method main

       } // end class carshop

Java简单代码?

       æ±‚助三个简单JAVA代码

       1、最简单的java代码肯定就是这个了,如下:publicclassMyFirstApp{ publicstaticvoidmain(String[]args){ System.out.print(Helloworld);}}“helloworld”就是应该是所有学java的新手看的第一个代码了。

       2、这只是一个简单实体类(叫做javabean)。publicPassenger是构造函数的重写,在类中也可以不写,不写的话系统会默认给一个无参构造函数(即没有参数的)。

       3、还有,你要确保目标盘上得有sg/DT这两个目录。追问:我多问一句。这段代码属于J2EE吧?不能这样说,J2EE是JAVA体系的一部份,是一种JAVA应用开发的技术架构。你这段代码只是一段JAVA的基础代码。

       4、run方法是线程的执行体。线程启动时只运行test中得run方法。

       5、a变为7//接着内层循环继续c=3判断cr结果发现成立进入ifcontinueloop回到了外层循环r自增1变为3//...//LZ要注意,a一直是在循环外,这两个循环一直在改变a的值,也就是a的值一直是在增的。

       æ±‚一个简单又有趣的JAVA小游戏代码

       1、System.out.println(猜数字游戏,请输入一个数0到,输入-1结束游戏:);inti=sc.nextInt();if(i==-1){ break;}count++;if(ir){ System.out.print(你猜小了。

       2、--求大神指点如何用java做扫雷小游戏详细...有源代码吗--怎么用Java做一个扫雷程序,要原创。。做好了给加--求高手写一个扫雷的JAVA代码,我愿出的悬赏或者更多。

       3、System.out.println(helloworld!);}}基本概念Java是一种可以撰写跨平台应用软件的面向对象的程序设计语言。

       4、EJB辅助书籍:《精通EJB(第三版)》以上书籍可下电子书,但是电子的看久了蛮累,眼睛受不了。

JAVA的一段简单代码

       1、publicclassHelloWorld{ publicstaticvoidmain(String[]args){ System.out.println(helloworld!);}}基本概念Java是一种可以撰写跨平台应用软件的面向对象的程序设计语言。

       2、还有,你要确保目标盘上得有sg/DT这两个目录。追问:我多问一句。这段代码属于J2EE吧?不能这样说,J2EE是JAVA体系的一部份,是一种JAVA应用开发的技术架构。你这段代码只是一段JAVA的基础代码。

       3、环境语言Java数据库Server,连接方式直连。如果你是XP系统还要打SP3的补丁。

       4、DBSQLManagerdbsm=newDBSQLManager();///就是这一行不能通过。

       5、bmouth网友回答的根本与题无关,看我小松鼠给你的源代码吧。

       6、a+=b就相当于将a的值和b的值相加再存入变量a中。

一个简单的Java程序代码?

       1、publicclassHelloWorld{ publicstaticvoidmain(String[]args){ System.out.println(helloworld!);}}基本概念Java是一种可以撰写跨平台应用软件的面向对象的程序设计语言。

       2、这个样子肯定不行撒。在所有的程序设计里面根本就没有这样的写法的。(除了我不知道的)你只能这样写,if(9=x&&x=)这种方式的。不然是会报错的额。你改改看。

       3、可以做一个批处理文件,在里面调用java虚拟机运行你的java程序。也可以用某种编程语言,像vb,c或c++编个程序,生成exe,能调用java虚拟机运行你的程序,很简单的。

       4、右键以管理员权限打开这个bat文件。编写java代码,新建文本文件,编写一个简单的java程序,然后另存为Hello.java。注意类的名字要和保存的文件名即Hello.java相同。

       5、Java可以开发后端,有spring,springmvc,springboot,springcould等等都是使用Java开发。Java也有前端框架,有Jquery,JavaScript,JSP,Servlet,统称JavaWEB开发。

       6、比如myeclipse,那么就是创建一个类,然后敲入main,alt+/可以导出main函数(Java程序的入口就是main)。如果没有用工具,需要配置环境变量的,配置好之后。

相关推荐
一周热点