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

 

quiz2024_02_20_APP1SLHL_makeLetters


Write a method that returns a string made up of all the characters from 'first' to 'last' inclusive. You may assume that 'first' and 'last' are both letters and that they are the same case (either upper-case or lower-case, but both the SAME case). Look at the test data for examples.


quiz2024_02_20_APP1SLHL_makeLetters("A", "Z") → "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
quiz2024_02_20_APP1SLHL_makeLetters("E", "W") → "EFGHIJKLMNOPQRSTUVW"
quiz2024_02_20_APP1SLHL_makeLetters("H", "I") → "HI"

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

public String quiz2024_02_20_APP1SLHL_makeLetters(char first, char last) { }

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

Copyright Nick Parlante 2017 - privacy