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

 

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

Given three strings, return a string that is composed of the first letter of the first string, the middle letter of the second string and the last letter of the third string. Each string is at least one character long and the middle string will contain an odd number of characters.


formatWord("boat", "track", "refrain") → "ban"
formatWord("12345", "9142568", "3") → "123"
formatWord("c", "a", "r") → "car"

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

public String formatWord(String str1, String str2, String str3) { }

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: 200 Post-solution available

Copyright Nick Parlante 2017 - privacy