Forked from 0ryant/gist:e8d4d6323d96f960a4a3ad737991abb1
Created
March 10, 2021 22:30
-
-
Save johnkamara/82aceb75ca6aa44cf2cee921f296770b to your computer and use it in GitHub Desktop.
Java - Coding Challenge 6 - Equal Sum Checker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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