第一段代碼:
安寧網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站設(shè)計(jì)等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。創(chuàng)新互聯(lián)成立于2013年到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。
class School implements ComputeAverage{
public double avarage(double x[]){
double total = 0;
for(double d:x){
total+=d;
}
return total/x.length;
}
}
第二段:computer.avarage(a);
第三段:computer.avarage(b);
最簡單的java代碼肯定就是這個(gè)了,如下:
public class MyFirstApp
{
public static void main(String[] args)
{
System.out.print("Hello world");
}
}
“hello world”就是應(yīng)該是所有學(xué)java的新手看的第一個(gè)代碼了。如果是零基礎(chǔ)的新手朋友們可以來我們的java實(shí)驗(yàn)班試聽,有免費(fèi)的試聽課程幫助學(xué)習(xí)java必備基礎(chǔ)知識(shí),有助教老師為零基礎(chǔ)的人提供個(gè)人學(xué)習(xí)方案,學(xué)習(xí)完成后有考評(píng)團(tuán)進(jìn)行專業(yè)測試,幫助測評(píng)學(xué)員是否適合繼續(xù)學(xué)習(xí)java,15天內(nèi)免費(fèi)幫助來報(bào)名體驗(yàn)實(shí)驗(yàn)班的新手快速入門java,更好的學(xué)習(xí)java!
package com.zpp;public class Charge {
public static void main(String [] args) {
if(args.length ==0) {
System.out.println("parameter error!");
System.out.println("java com.zpp.Charge [int]");
return;
}
int min = Integer.parseInt(args[0]);
double money = 0.0;
if (min = 0) {
money =0.0;
System.out.println("not money");
} else if (min = 60) {
money = 2.0;
} else {
money = 2.0 + (min - 60) * 0.01;
}
System.out.println("please pay: " + money);
}
} 編譯:javac -d . Charge.java運(yùn)行:java com.zpp.Charge 111
public class Test {
public static void main(String[] args) {
MyRectangle rec = new MyRectangle(3, 5);
MyRectangle square = new MySquare(4);
System.out.println(rec.toString());
System.out.println(square.toString());
}
}
class MyRectangle{
protected double width;
protected double length;
public MyRectangle(double length, double width){
this.width = width;
this.length = length;
}
public double getLength() {
return length;
}
public double getWidth() {
return width;
}
public void setWidth(double width) {
this.width = width;
}
public double getArea(){
return this.width * this.length;
}
public String toString(){
return "長方形的長為:" + length + ", 寬: " + width + ", 面積為:" + getArea();
}
}
class MySquare extends MyRectangle{
public MySquare(double length){
super(length, length);
}
public double getArea(){
return Math.pow(super.width, 2);
}
public String toString(){
return "正方形邊長為: " + super.length + ", 面積為: " + getArea();
}
}
----------測試
長方形的長為:3.0, 寬: 5.0, 面積為:15.0
正方形邊長為: 4.0, 面積為: 16.0
public class double_XX {
/**
* 產(chǎn)生要求的數(shù)組
* @param one 一維長度
* @param two 二維長度
* @param min 要求的最小數(shù)
* @param max 要求的最大數(shù)
* @return 要求的二維數(shù)組
*/
public static double[][] DoubleArray(int one, int two, double min,
double max) {
double[][] array = new double[one][two];
for(int i=0;ione;i++){
for(int j=0;jtwo;j++){
array[i][j]=(max-min)*Math.random()+min;
}
}
return array;
}
/**
* 打印數(shù)組的方法
* @param DoubleArray 第一個(gè)方法產(chǎn)生的數(shù)組
*/
public static void arrayPrint(double[][] DoubleArray){
for(int i=0;iDoubleArray.length;i++){
for(int j=0;jDoubleArray[i].length;j++){
System.out.println("DoubleArray["+i+"]["+j+"]:"+DoubleArray[i][j]);
}
}
}
/**
* main里創(chuàng)建的不同的大小的數(shù)組
* @param args
*/
public static void main(String args[]) {
arrayPrint(DoubleArray(2,3,8,15));
arrayPrint(DoubleArray(5,8,1,20));
arrayPrint(DoubleArray(4,4,100,200));
}
}