Created
February 23, 2016 15:16
-
-
Save ilyaBrandon/07019b5ae0dce0d9e13e to your computer and use it in GitHub Desktop.
This file contains hidden or 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 BATTLEFRONT { | |
| public static void main(String[] args) { | |
| sum(8,5); | |
| } | |
| static void sum(int num1,int num2) { | |
| System.out.println(num1+num2 ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment