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

 

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

Cipher_in_Caps - 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_Caps("Be My Valentine", 8) → "JM UG DITMVBQVM"
Cipher_In_Caps("", 12) → ""
Cipher_In_Caps("My secret message", 5) → "RD XJHWJY RJXXFLJ"

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

public String Cipher_In_Caps(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: 120

Copyright Nick Parlante 2017 - privacy