Question: CycleDriver.java import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.io.PrintWriter; import java.util.Scanner; public class CycleDriver { public static void main(String args[]) throws IOException{ Scanner key =

CycleDriver.java import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.io.PrintWriter; import java.util.Scanner; public class CycleDriver { public static void main(String args[]) throws IOException{ Scanner key = new Scanner(System.in); System.out.println("Enter Number of Wheels of Cycle:"); int numberOfWheels = key.nextInt(); System.out.println("Enter Weight of Cycle :"); int weight = key.nextInt(); Cycle C = new Cycle(numberOfWheels,weight); File F = new File("Cycle.txt"); if (!F.exists()){ F.createNewFile(); } PrintWriter PW = new PrintWriter(F); PW.println("Number Of wheels :"+C.getNumberOfWheels()); PW.println("Weight "+C.getWeight()); PW.close(); } } Cycle.java public class Cycle { private int numberOfWheels; private int weight; Cycle(){ this(100,1000); } Cycle(int numberOfWheels,int weight){ this.numberOfWheels=numberOfWheels; this.weight=weight; try { if(numberOfWheels<=0 || weight<=0) { throw new Exception("Values cannot be less than or equal to zero"); } } catch(Exception e) { System.out.println(e); } } public int getNumberOfWheels() { return numberOfWheels; } public int getWeight() { return weight; } }

Two enum errors and program would not run, need assistance on locating them.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!