Guest User

Untitled

a guest
Nov 16th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class AddIntegers {
  2. public static void main(String[] args) {
  3. // Created two "integer type" variables
  4. int numOne = 3;
  5. int numTwo = 4;
  6. //Print out the output of the addition
  7. System.out.println(numOne + numTwo); //7
  8. }
  9. }
Add Comment
Please, Sign In to add comment