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

 

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

DeCipher_in_Lower - DeCode: given a string and a numeric key - translate the given "string" into a "decoded" string (message) with the key -- Example BCDEF , 1 would return ABCDE. (Making each letter go back 1character) 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.


DeCipher_In_Lower("yr vyyu", 10) → "oh look"
DeCipher_In_Lower("x utt{ vdds", 15) → "i feel good"
DeCipher_In_Lower("aqw ctg urgekcn", 2) → "you are special"

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

public String DeCipher_In_Lower(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: 100 Post-solution available

Copyright Nick Parlante 2017 - privacy