Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I cant figure out a way to return a string with underscore, the amount of underscore is based on the length of parameter Word, with

I cant figure out a way to return a string with underscore, the amount of underscore is based on the length of parameter "Word", with no spaces in between each underscore.

=================test method==============================

public void testCreateDisguisedWord() { assertEquals("______", Hangman.createDisguisedWord("option")); }

=======================my code====================

public static String createDisguisedWord(String word) {

char[] filler = new char[word.length()];

for(int i=0;i

filler[i]='_';

if(word.charAt(i)==' ') {

filler[i]=' ';

}

System.out.print(filler[i]);

}

return filler;

}

==============================================================

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