Advertisement
HelpfulBeast

By Memory Test Class

Nov 10th, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class apples {
  2. public static void main(String[] args) {
  3. int Dad = 37;
  4. int Mom = 40;
  5. int Karlee = 5;
  6. int Landon = 13;
  7. int Total = 0;
  8.  
  9. for(int counter = 0;counter < 1;counter++){
  10. Total=Dad+Mom+Karlee+Landon;
  11.  
  12. System.out.println("Your family total is " + Total);
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement