Question: 1 public class GetCorrectOutput { 2 3 4 6 7 -8 9 0 1 2 3 4 5 6 7 8 9 0 1
1 public class GetCorrectOutput { 2 3 4 6 7 -8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1} 2 // You need to define three methods: // 1.) output1: takes an int, adds one to it, and prints out the result // // 2.) output2: takes a double, subtracts 1.5 from it, and prints out the result // output3: takes a String, concatenates "bar" to the end of it, and prints out the result // 3.) // // // Your program should end up having the following output: // // 4 // 3.0 // foobar // 7 // 5.5 // barbar // // TODO - write your code below this comment // DO NOT MODIFY main! public static void main(String[] args) { } output1 (3); output2 (4.5); output3("foo"); output1 (6); output2 (7.0); output3("bar");
Step by Step Solution
3.39 Rating (161 Votes )
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
