Generation

generate functionSun, 13 Nov 2022

Return if int is bigger than 5

public static boolean isBigger(int num) { if (num > 5) { return true; } else { return false; } }

Want to kickstart your project?Use the new AI Studio to create your code