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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started