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

 

andersoniii.edwin@cusd80.com week6 > averageLetters
prev  |  next  |  chance

Write the method called “averageLetters”. This method receives a string and returns an integer of the average number of letters in the given string of words. Given: I Love Java – this would return 3 (9 letters divided by 3 words) We will assume the words are separated by just one space... No beginning space character, but an ending space character.


averageLetters("I Love Java ") → 3
averageLetters("Math Is For Champions ") → 4
averageLetters("What a good day ") → 3

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

public int averageLetters( String phrase){ }

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: 110

Copyright Nick Parlante 2017 - privacy