Guest User

Untitled

a guest
Dec 11th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1.  
  2. public class CopyOfRobotWalk {
  3. public static void main(String[] args) {
  4. number();
  5. }
  6. public static void number() {
  7. int average = 0;
  8. for (int i = 1; i <= 20; i++) {
  9. double d = (Math.random()*4)-1;
  10. int num = (int)(d*20);
  11. average = num;
  12. System.out.println("On simulation " + i + " the robot went " + num + " steps in 20 tries.");
  13. }
  14. System.out.print(average);
  15. }
  16. }
Add Comment
Please, Sign In to add comment