Advertisement
aznGiLL

Application

Mar 13th, 2012
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. package Tutorial;
  2.  
  3. public class Application {
  4.  
  5.     public static void main(String[] args) {
  6.        
  7.         Robot Bender = new Robot(19, 2.4, 200.80);
  8.         Robot Canoderm = new Robot(24, 2.1, 188.00);
  9.        
  10.         Bender.turnOn();
  11.         Bender.processing();
  12.         Bender.displayDetails();
  13.         Bender.turnOff();
  14.        
  15.         Canoderm.turnOn();
  16.        
  17.        
  18.        
  19.     }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement