真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java50行簡單代碼的簡單介紹

求一個50行左右的JAVA代碼,最好每行帶注釋,謝謝啦

/*這個相當(dāng)詳細(xì)了.

創(chuàng)新互聯(lián)建站服務(wù)項目包括德興網(wǎng)站建設(shè)、德興網(wǎng)站制作、德興網(wǎng)頁制作以及德興網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,德興網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到德興省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!

程序也不算太難.而且給老師看的時候效果比較好.因為有圖形化界面,又實現(xiàn)一個比較實用的功能.老師會比較高興的.

建立一個文件名為Change.java就可以編譯了*/

/*

* 這個程序?qū)崿F(xiàn)輸入身高算出標(biāo)準(zhǔn)體重,輸入體重,算出身高的功能

*/

import java.awt.*; //導(dǎo)入相關(guān)類包,這才樣使用相應(yīng)awt圖形界面的類

import java.awt.event.*;//同上

public class Change extends Frame { //定義一個類Change, 父類是Frame(圖形界面的)

Button b = new Button("互查"); //創(chuàng)建一個按鈕的對象b,顯示為"互查"

Label l1 = new Label("身高(cm)");//創(chuàng)建一個lable.顯示身高

Label l2 = new Label("體重(kg)");//創(chuàng)建一個lable 顯示體重

double heigth, weigth; //定義變量

double x, y; //定義變量

TextField tf1 = new TextField(null, 10);//添加Text框

TextField tf2 = new TextField(null, 10);//添加Text框

public Change() {//類的構(gòu)造函數(shù),完成初始化

super("互查表");//創(chuàng)建窗口,標(biāo)題為互查表

setLayout(new FlowLayout(FlowLayout.LEFT));//設(shè)置布局

add(l1);//把lable 身高放到window里

add(tf1);//把Text 框 放到窗口上

add(l2); //把lable 體重放到window里

add(tf2);//Test放到窗口里

add(b);//把button放到窗口上

pack();//自動放到窗口里排列上邊的組件

setVisible(true);//可以讓用戶看到窗口

addWindowListener(new WindowAdapter() {//如果按 X, 關(guān)閉窗口

public void windowClosing(WindowEvent e) {

System.exit(0);

}

});

b.addActionListener(new ButtonListener());//添加button監(jiān)聽函數(shù)

}

class ButtonListener implements ActionListener {//實現(xiàn)click button時功能操作

public void actionPerformed(ActionEvent e) {//當(dāng)click調(diào)用

if (tf1.getText()!=null) {//檢查tf1 test 是否為空

try {//取異常

x = Double.parseDouble(tf1.getText());//字符轉(zhuǎn)為double型

weigth = (x - 100) * 0.9;//算重量

tf2.setText("" + weigth);//顯示重量

} catch (NumberFormatException ex) {

tf1.setText("");//如果輸入不是數(shù)字,設(shè)為空

}

}

if (tf1.getText().equals("")==true){//tf1是否為空

y = Double.parseDouble(tf2.getText());//把tf2里的文本轉(zhuǎn)為double 型 的

heigth = y / 0.9 + 100; //算身高根據(jù)重量

tf1.setText("" + heigth);}//顯示身高

}

}

public static void main(String[] args) {//主函數(shù),程序入口

new Change(); //建立類Change的對象,并調(diào)用他的構(gòu)造函數(shù)Change().顯示窗口

}

}

50行左右的java程序代碼,要求代碼內(nèi)含有兩個循環(huán),兩個函數(shù),50行,急需

隨便給你寫了一個

package com.wys.util;

import java.util.ArrayList;

import java.util.List;

import java.util.Random;

public class Test {

public static ListInteger smallNumbers,largeNumbers;

public static int sum1 = 0,sum2 = 0;

public static void main(String[] args) {

smallNumbers = new ArrayListInteger();

largeNumbers = new ArrayListInteger();

run();

}

public static void run() {

int i = 0;

for (int j = 0; j 50; j++) {

Random rand = new Random();

i = rand.nextInt(1000);

if (i500) {

small(i);

}else{

large(i);

}

}

System.out.println("隨機(jī)輸出的50個數(shù)字中:");

System.out.println("大于500的數(shù)(包括500)共有"+largeNumbers.size()+"個");

System.out.print("他們是"+largeNumbers);

System.out.println();

System.out.println("他們的和是"+sum1);

System.out.println("小于500的數(shù)共有"+smallNumbers.size()+"個");

System.out.print("他們是"+smallNumbers);

System.out.println();

System.out.println("他們的和是"+sum2);

}

private static void large(int number) {

largeNumbers.add(number);

sum1 += number;

}

private static void small(int number) {

smallNumbers.add(number);

sum2 += number;

}

}

一段java代碼,可運行出來,至少50行代碼,最好可以注釋一下

就把打字游戲的給你吧

import java.awt.*;

import javax.swing.*;

import java.awt.event.*;

import java.util.Random;

class WordPanel extends JPanel implements Runnable{

private Thread thread = null;

private int level = 1;

private Font font = new Font("宋體",Font.ITALIC+Font.BOLD,24);

private Color color = Color.BLUE;

public static final int x = 10;

private int y = 0;

private char word;//下落的字母

private static Random rand = new Random();

public void setY(int y){

this.y = y;

}

public void setWord(char word){

this.word = word;

}

public char getWord(){

return this.word;

}

public static char newChar(){

return (char)(97+rand.nextInt(26));

}

public WordPanel(){

word = newChar();

thread = new Thread(this);

thread.start();

}

public void paintComponent(Graphics g) {

super.paintComponent(g);

g.setFont(font);

g.setColor(color);

g.drawString(String.valueOf(word),x,y);

}

public void run(){

while (true){

try {

Thread.sleep(1000);

this.repaint();

if (y=this.getHeight()){

y = 0;

word = this.newChar();

}else

y+=20;

}

catch (Exception ex) {

ex.printStackTrace();

}

}

}

}

public class WordGame extends JFrame{

private WordPanel[] words = new WordPanel[10];

class Listener extends KeyAdapter{

public void keyTyped(KeyEvent e) {

char input = e.getKeyChar();

for (int i = 0; iwords.length; i++){

if ( input==words[i].getWord() ){

words[i].setWord(WordPanel.newChar());

words[i].setY(0);

words[i].repaint();

break;

}

}

}

}

public WordGame(String title){

super(title);//思考

Container c = this.getContentPane();

c.setLayout(new GridLayout(1,words.length));

this.addKeyListener( new Listener() );

for (int i = 0; iwords.length; i++){

words[i] = new WordPanel();

c.add(words[i]);

}

this.setSize( new Dimension(400,400) );

this.setVisible(true);

}

public static void main(String[] args){

WordGame game = new WordGame("簡單的打字游戲");

}

}

誰能給一個Java程序代碼我,要50行到100行就可以啦。最好有幾行解釋

import java.io.File;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

import java.util.Properties;

/**

* java應(yīng)用對配置文件的讀寫

*

* @author

* @version

*

*/

public class PropertyMgr {

private static Properties props = new Properties();

private static FileInputStream in = null;

private static FileOutputStream out = null;

static {

try {

// 從當(dāng)前類路徑下的配置文件

props.load(PropertyMgr.class.getClassLoader().getResourceAsStream("System.properties"));

// 從指定文件名讀入配置信息

in = new FileInputStream("System.properties");

props.load(in);

in.close();

} catch (IOException e) {

e.printStackTrace();

}

}

/**

* 獲取鍵所對應(yīng)的值

*

* @param key

* 要得到值的鍵

* @return

*/

public static String getProperty(String key) {

return props.getProperty(key);

}

/**

* 改變或添加一個key的值 當(dāng)key存在于properties文件中時該key的值被value所代替, 當(dāng)key不存在時,該key的值是value

*

* @param key

* 要存入的鍵

* @param value

* 要存入的值

*/

public static String setProperty(String key, String value) {

try {

props.setProperty(key, value);

} catch (RuntimeException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

try {

String urlFile = new File("System.properties").getAbsolutePath();

String tempUrl = urlFile.substring(urlFile.indexOf(File.separator));

out = new FileOutputStream(tempUrl);

props.store(out, null);

out.close();

} catch (FileNotFoundException e) {

System.out.println("系統(tǒng)找不到指定的路徑");

e.printStackTrace();

} catch (IOException ioe) {

ioe.printStackTrace();

}

return "頁面名稱保存成功";

}

/**

* 將更改后的文件數(shù)據(jù)存入指定的文件中,該文件可以不存在,但是路徑文件所在的文件夾一定得存在。

*

* @param fileName

* 文件路徑+文件名稱

* @param description

* 對該文件的描述

*/

public static String saveFile() {

try {

String urlFile = new File("System.properties").getAbsolutePath();

String tempUrl = urlFile.substring(urlFile.indexOf(File.separator));

System.out.println("tempUrl:" + tempUrl);

out = new FileOutputStream(tempUrl);

props.store(out, null);

out.close();

} catch (FileNotFoundException e) {

System.out.println("系統(tǒng)找不到指定的路徑");

e.printStackTrace();

} catch (IOException ioe) {

ioe.printStackTrace();

}

return "保存成功";

}

}


標(biāo)題名稱:java50行簡單代碼的簡單介紹
分享網(wǎng)址:http://weahome.cn/article/hhgees.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部