Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

reverseDigits should take a String as input and output a String. The output String should be identical to the input String except all digits (0

reverseDigits should take a String as input and output a String. The output String should be identical to the input String except all digits (0 through 9) of the input Stringare in reverse order (but same locations) in the output String. reverseDigits("0 the d1gits of the2 string3 4 are8 reversed 9!") should return "9 the d8gits of the4 string3 2 are1 reversed 0!"

You are allowed to use the following from the Java API:

class String

length

charAt

class StringBuilder

length

charAt

append

toString

class Character

any method

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions