Open robert-min opened 1 year ago
public class CarTest {
public static void main(String[] args) {
String model = "BMW528i";
System.out.println("model = " + model);
long distance = 10000000;
System.out.println("distance = " + distance);
int price = 9000000;
System.out.println("price = " + price);
String company = "BMW";
System.out.println("company = " + company);
char type = 'A';
System.out.println("type = " + type);
boolean auto = true;
System.out.println("auto = " + auto);
int year = 2000;
System.out.println("year = " + year);
float gasmi = 22.5f;
System.out.println("gasmi = " + gasmi);
}
}
목표