Advertisement
jwrbg

ArraySum

Feb 20th, 2020
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class ArraySum
  4. {
  5.  
  6. public static void main(String[] args)
  7. {
  8. int[] arr = {5, 7, 3};
  9. int sum = 0;
  10. for (int i = 0; i < arr.length; i++) {
  11. sum += arr[i];
  12. }
  13. System.out.println(sum);
  14.  
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement