-Learn about the class of java
package TheCars;
public class Car{
String kind;
String color;
int V;
int horsepower;
}
package TheCars;
public class CarMain{
public static void main(String[] ar) {
Car car1 = new Car();
car1.kind = "Good";
car1.color = "Black";
car1.V = 6;
car1.horsepower = 560;
}
System.out.println("The info of the cars");
System.out.println("Product of the car = " + car1.kind + ", color = " + car1.color + ", kind of V = " + car1.V + ", Horsepower = " + car1.horsepower);
Car car2 = new Car();
car2.kind = "Nice";
car2.color = "Yellow";
car2.V = 4;
car2.horsepower = 400;
System.out.println("The info of the cars");
System.out.println("Product of the car = " + car2.kind + ", color = " + car2.color + ", kind of V = " + car2.V + ", Horsepower = " + car2.horsepower);
Car car3 = new Car();
car3.kind = "Perfect";
car3.color = "Blue";
car3.V = 8;
car3.horsepower = 760;
System.out.println("The infor of the cars");
System.out.println("Product of the car = " + car3.kind + ", cokor = " + car3.color + ", kind of V = " + car3.V + ", Horsepower = " + car3.horsepower);
}
}
'Footstep . 발자취' 카테고리의 다른 글
2020-02-16-My footstep (0) | 2020.03.18 |
---|---|
2020-02-15-My footstep (0) | 2020.03.16 |
2020-02-12-My footstep (0) | 2020.03.16 |
2020-02-11-My footstep (0) | 2020.03.16 |
2020-02-08-My footstep (0) | 2020.03.16 |