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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!