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

 

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

Cipher_in_CamelCase - make a Code Given a string and a numeric key - translate the given string into a "coded" string with the key -- Example ABCDE , 1 would return BCDEF. 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_CamelCase("Oh Boy", 10) → "Yr Lyi"
Cipher_In_CamelCase("Be My Valentine", 8) → "Jm Ug Ditmvbqvm"
Cipher_In_CamelCase("Happy Daze", 25) → "Gzoox Czyd"

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

public String Cipher_In_CamelCase(String message ,int key) }

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

Copyright Nick Parlante 2017 - privacy