id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

tlsmith2@wsfcs.k12.nc.us > array1DSumEvens
prev  |  next  |  chance

Given an array of integers, return a string with all the even numbers connected with plus signs followed by the sum of these numbers in this exact format: 4+2+8=14. The array will contain at least two even numbers and the first element in the array will always be an even number.


array1DSumEvens([4, 3, 1, 2, 8, 7]) → "4+2+8=14"
array1DSumEvens([2, 6]) → "2+6=8"
array1DSumEvens([10, 3, 5, 7, 2, 8]) → "10+2+8=20"

...Save, Compile, Run (ctrl-enter)

public String array1DSumEvens(int[] nums) }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 10 Post-solution available

Copyright Nick Parlante 2017 - privacy