第一段代码:
安宁网站制作公司哪家好,找创新互联!从网页设计、网站建设、微信开发、APP开发、响应式网站设计等网站项目制作,到程序开发,运营维护。创新互联成立于2013年到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选创新互联。
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代码肯定就是这个了,如下:
public class MyFirstApp
{
public static void main(String[] args)
{
System.out.print("Hello world");
}
}
“hello world”就是应该是所有学java的新手看的第一个代码了。如果是零基础的新手朋友们可以来我们的java实验班试听,有免费的试听课程帮助学习java必备基础知识,有助教老师为零基础的人提供个人学习方案,学习完成后有考评团进行专业测试,帮助测评学员是否适合继续学习java,15天内免费帮助来报名体验实验班的新手快速入门java,更好的学习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运行: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 {
/**
* 产生要求的数组
* @param one 一维长度
* @param two 二维长度
* @param min 要求的最小数
* @param max 要求的最大数
* @return 要求的二维数组
*/
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;
}
/**
* 打印数组的方法
* @param DoubleArray 第一个方法产生的数组
*/
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里创建的不同的大小的数组
* @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));
}
}