[Solved] When I compile this why doesn’t it print anything? [closed]
You never call your method “forloop()”, that’s the reason why there’s nothing printed. NewbieJavaDeveloper’s answer is a good one. But if you want to pactice “method and return”, here is another answer: import java.util.Scanner;//import scanner so user can input class arrays { public static void main(String[] param) { String[] animals = arrays(); forloop(animals); System.exit(0); } … Read more