Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnkamara/82aceb75ca6aa44cf2cee921f296770b to your computer and use it in GitHub Desktop.
Save johnkamara/82aceb75ca6aa44cf2cee921f296770b to your computer and use it in GitHub Desktop.
Java - Coding Challenge 6 - Equal Sum Checker
public class EqualSumChecker {
public static boolean hasEqualSum (int a, int b, int c) {
if (a+b==c){return true;}
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment