
package vehicle;
public class Vehicle {
String owner, color, merk;
int wheel, speed;
void Owner(String o, int w){
owner=o;
wheel=w;
}
void Type(String c, String m, int s){
color=c;
merk=m ;
speed=s;
}
static void Line(){
System.out.println("+-------------------------------------+");
}
void...[Readmore]