Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: public class JavaApplication9HW1 { /** * @param args the command line arguments */ public static void main(String[] args) { Car car1 = new Car(89 , "Tempo"); for (int x = 0; x < 5; x++){ car1.accelerate(); System.out.println("The " + (car1.getMake()) + " is traveling @ " + (car1.getSpeed()) + " … |
The End.