Answers for "how to call void method in main java"

1

calling a void method java

public class methods{
  public static void main(String[] args){
    printSum(5, 15); // Print 20
  }
  public static void printSum(int a, int b){
    System.out.println(a + b);
  }
  // Our method should be outside the main methods bounds
  // Call your function inside the main method.
}
Posted by: Guest on June-18-2021

Code answers related to "how to call void method in main java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language