206k views
3 votes
write a void method named mymethod which prints im a void method! (without the quotes). your method should be declared public and static. you can call your method in the programs main method so you can test whether it works, but you must remove or comment out the main method before checking your code for a score.

User Smok
by
8.2k points

1 Answer

1 vote

public static void mymethod() {

System.out.println("I'm a void method!");

}

Here is an example of how you could call the method in the main method to test it:

Copy code

public static void main(String[] args) {

mymethod();

}

Please make sure to remove or comment out the main method before checking your code for a score.

User Tahir Siddiqui
by
7.7k points