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

 

andersoniii.edwin@cusd80.com > Cipher_In_LowerCase
prev  |  next  |  chance

Cipher_in_LowerCase - make a Code Given a string and a alpha character "key" - translate the given string into a "coded" string with the key in all lower case -- Example ABCDE , 1 would return bdefg. With a key value of 26 there would be no change in the String. If the string length is zero then return a empty String.


Cipher_In_LowerCase("Be My Valentine", "H") → "jm ug ditmvbqvm"
Cipher_In_LowerCase("My secret message", "E") → "rd xjhwjy rjxxflj"
Cipher_In_LowerCase("Beware of the Ides of March", "C") → "ehzduh ri wkh lghv ri pdufk"

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

public String Cipher_In_LowerCase(String message ,char k) }

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

Copyright Nick Parlante 2017 - privacy