How do I fix this code please read intructions( in java)

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

How do I fix this code please read intructions( in java)

Rearrange the following lines of code to produce a program that generates and prints an array list of random points. Not all lines
are useful.
ZyMath.random() is used instead of Math.random() so that the tests are reproducible.
Mouse: Drag/drop
Keyboard: Grab/release Spacebar (or Enter). Move O. Cancel Esc
Unused
import java.util.System;
System.out.println(points);
import java.awt. Rectangle;
import java.util.Math;
int x = (int) (MAX * ZyMath.random());
int y =
(int) (MAX * ZyMath.random());
points.add(new Point(x, y));
}
for (int i
{
=
0; i<n; i++)
↑
Demo.java
import java.awt. Point;
import java.util.ArrayList;
import java.util.Scanner;
public class Demo
{
}
Load default template...
public static void main(String[] args)
{
int n = in.nextInt ();
final int MAX = 100;
ArrayList<Point> points = new ArrayList<Point>();
System.out.print("How many points? ");
}
Scanner in = new Scanner(System.in);
ZyMath.srand(in.nextInt());
Transcribed Image Text:Rearrange the following lines of code to produce a program that generates and prints an array list of random points. Not all lines are useful. ZyMath.random() is used instead of Math.random() so that the tests are reproducible. Mouse: Drag/drop Keyboard: Grab/release Spacebar (or Enter). Move O. Cancel Esc Unused import java.util.System; System.out.println(points); import java.awt. Rectangle; import java.util.Math; int x = (int) (MAX * ZyMath.random()); int y = (int) (MAX * ZyMath.random()); points.add(new Point(x, y)); } for (int i { = 0; i<n; i++) ↑ Demo.java import java.awt. Point; import java.util.ArrayList; import java.util.Scanner; public class Demo { } Load default template... public static void main(String[] args) { int n = in.nextInt (); final int MAX = 100; ArrayList<Point> points = new ArrayList<Point>(); System.out.print("How many points? "); } Scanner in = new Scanner(System.in); ZyMath.srand(in.nextInt());
You've added 5 blocks, but 9 were expected.
Not all tests passed.
X 1: Compare output
Output differs. See highlights below. Special character legend
Input
Your output
Expected output
X 2: Compare output
Input
Your output
22 1
Output differs. See highlights below. Special character legend
Expected output
How many points?
How many points? [java.awt.Point [x=73,y=86]]↔
87 4
How many points?
How many points? [java.awt.Point [x=72,y=88], java.awt.Point [x=72, y=44],
Transcribed Image Text:You've added 5 blocks, but 9 were expected. Not all tests passed. X 1: Compare output Output differs. See highlights below. Special character legend Input Your output Expected output X 2: Compare output Input Your output 22 1 Output differs. See highlights below. Special character legend Expected output How many points? How many points? [java.awt.Point [x=73,y=86]]↔ 87 4 How many points? How many points? [java.awt.Point [x=72,y=88], java.awt.Point [x=72, y=44],
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Files and Directory
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education