Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Inductive Databases And Constraint Based Data Mining

Authors: Saso Dzeroski ,Bart Goethals ,Pance Panov

2010th Edition

1489982175, 978-1489982179

More Books

Students also viewed these Databases questions