Answers for "java function"

10

java method

public class Main {
  public static void main(String args[]) {
    SayHi();
    
    int sum = AddNums(5, 6);
    System.out.println(sum);
  }
  
  public static void SayHi() { //This method has no return value
    System.out.println("Hi!");
  }
  
  public static int AddNums(int a, int b) { //This method has a return value
    return a + b;
}
Posted by: Guest on December-20-2019
3

how to create a function in java

package com.company;

public class Main {
    static void one(){ // youCanPutWhatEverNameYouLikeInThePlaceOf"One"
        System.out.println("HELLO");
    }
    public static void main(String[] args) {
        one(); //theTerminalShouldSay"HELLO"
    }
}
Posted by: Guest on June-05-2021
2

how to call a function in java

public class MyClass {
 
    static void myMethod() {
        System.out.println("You have called me! My name is: myMethod!");
    }
 
    public static void main(String[] args) {
        myMethod();
    }
}
Posted by: Guest on February-24-2021
1

function in java

public class Main
{
    static void function(){
        System.out.println("I am a function!");
    }
	public static void main(String[] args) {
		function();
	}
}
Posted by: Guest on March-30-2020
5

java how to define a function

//declare a function like this:
void function(int parameter1)
{
	//function body
}
//call the function like this:
function(1);
Posted by: Guest on December-19-2019
0

java function

public class Main {
  static void myMethod() {
    System.out.println("I just got executed!");
  }

  public static void main(String[] args) {
    myMethod();
  }
}

// Outputs "I just got executed!"
Posted by: Guest on October-18-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language