Question: Please help this linear java code to change OOP code. this code is to add and sustract a number but need to change from procedural

Please help this linear java code to change OOP code. this code is to add and sustract a number but need to change from procedural ( linear) code to object oriented programing

import java.util.Scanner; public class addNumbers {

public static void main(String[] args) { // Begin main Scanner input = new Scanner( System.in ); System.out.println("Enter number 1"); double number1 = input.nextDouble(); System.out.println("Enter number 2"); double number2 = input.nextDouble(); double sum=number1 + number2; double difference = number1 - number2; System.out.printf(" Sum = %f ", sum); System.out.printf("Difference = %f", difference); }

}

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!