Question

write a java METHOD that has two parameters that will be passed to the method and...

write a java METHOD that has two parameters that will be passed to the method and a variable that is legally declared twice in the method.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

ExampleMaxNumber.java

public class ExampleMaxNumber {
   public static void main(String[] args) {
      int a = 11;
      int b = 6;
      int c = maxFunction(a, b);//METHOD that has two parameters
      System.out.println("Maximum Value = " + c);
   }
   public static int maxFunction(int n1, int n2) {
       {
            int m=10;//a variable that is legally declared twice in the method
        }
        {
            int m=10;//a variable that is legally declared twice in the method
        }
      int max;
      if (n1 > n2)
         max = n1;
      else
         max = n2;
      return max;
   }
}

Output:-

Maximum Value = 11
Add a comment
Know the answer?
Add Answer to:
write a java METHOD that has two parameters that will be passed to the method and...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Write a non-void method named sum that is passed two int parameters when it is called....

    Write a non-void method named sum that is passed two int parameters when it is called. It then uses a for-loop to compute and return the value of the sum of all the numbers between the value of the first parameter and the second, inclusive. This method does not display anything. Give an example of how this method would be called, to produce output

  • 4. Write a static method named ConcatStrings that is passed any number of parameters of   type...

    4. Write a static method named ConcatStrings that is passed any number of parameters of   type String, and returns a single string that is the concatenation of the strings passed.   (4 pts.)   5. Write a static method named ConcatObjects that is passed any number of parameters of   type Object, and returns a single string that is the concatenation of the result of the call to   toString() for each of the objects. (4 pts.)   6. Write a class named Triplet that...

  • Write a Java method called compare that takes two integers as input parameters and returns 1...

    Write a Java method called compare that takes two integers as input parameters and returns 1 if the first parameter is larger than the second parameter returns – 1 if the second parameter is larger than the first parameter, and returns 0 if the two parameters are equal.

  • In Java: Let's create a method that has parameters. Write a method, called returnHours that returns...

    In Java: Let's create a method that has parameters. Write a method, called returnHours that returns a string. Make the string from a string representing your name and a number representing the hours you spend sleeping, both are values that you pass in from the main. Create the variables to pass into the method call in main. Call the method and print the return value in main. Run and test it.

  • I am trying to write a java method that takes two string parameters from a user...

    I am trying to write a java method that takes two string parameters from a user and then returns the first input after removing the letters that appear in the second input. For example: if input1 = fortune and input2 = tune then the method returns "for" seems simple but I am not understanding exactly how to tackle this thanks!!

  • Using Java: 1. Recursive Multiplication Write a recursive function that accepts two arguments into the parameters...

    Using Java: 1. Recursive Multiplication Write a recursive function that accepts two arguments into the parameters x and y. The function should return the value of x times y. Remember, multiplication can be performed as repeated addition as follows: 5×6=6+6+6+6+6 2. Recursive findings Write a recursive boolean method named reFinding. The method should search an array for a specified value, and return true if the value is found in the array, or false if the value is not found in...

  • Using Java, Write a method , getFirstLine, that is passed a String  argument and that returns the...

    Using Java, Write a method , getFirstLine, that is passed a String  argument and that returns the first line. (Recall that lines are terminated with the "\n" character .) Assume that the argument contains at least one complete, newline-terminated line.

  • in Java please (a) Write a static method abbreviate( ) which is passed a String s...

    in Java please (a) Write a static method abbreviate( ) which is passed a String s and an int max. The method returns a new String which contains the content of s abbreviated to at most max characters, but where the last three characters are ellipses (i.e., the characters . . .). For example, if s is "Too bad Spongebob’s not here to enjoy Spongebob not being here. ---Squidward." and max is 10, the method returns the 10-character String "Too...

  • Write a java recursive method digitMatch that takes two nonnegative integers as parameters and that returns...

    Write a java recursive method digitMatch that takes two nonnegative integers as parameters and that returns the number of digits that match between them. Two digits match if they are equal and have the same relative position starting from the end of the number (i.e., starting with the ones digit). In other words, the method should compare the last digits of each number, the second-to-last digits of each number, the third-to-last digits of each number, and so forth, counting how...

  • Java Language Write a complete method calculateCost that accepts two parameters: a char representing package code...

    Java Language Write a complete method calculateCost that accepts two parameters: a char representing package code for photo orders and a char representing a code for extra add- ons. The method returns a double representing the amount of the photo order (base order package order and any add-ons). Compute the amount of the order given the following table of base package codes: $12 $24 $40 $70 Add-on cost for the following codes: $5 n $5 MEN $10 no additional cost

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT