Question: Can someone help with this statement in JAVA?Add two more statements to main() to test inputs 3 and -1. Use print statements similar to the

Can someone help with this statement in JAVA?Add two more statements to main() to test inputs 3 and -1. Use print statements similar to the existing one (don't use assert).

import java.util.Scanner;

public class UnitTesting { // Function returns origNum cubed public static int cubeNum(int origNum) { return origNum * origNum * origNum; }

public static void main (String [] args) {

System.out.println("Testing started"); System.out.println("2, expecting 8, got: " + cubeNum(2));

/* Your solution goes here */

System.out.println("Testing completed");

return; }

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!