Ask Question

Write an expression to detect that the first character of userinput matches firstLetter. 1 import java. util. Scanner; 3 public class CharMatching 4 public static void main (String [] args) { Scanner scnr new Scanner (System. in); String userInput; char firstLetter; userInput = scnr. nextLine (); firstLetter scnr. nextLine (). charAt (0); 12 13 14 15 if ( / * Your solution goes here * System. out. printin ("Found match: "firstLetter); else t System. out. println ("No match: " firstLetter); 17 18 19 20 21 return

+2
Answers (1)
  1. 1 May, 17:38
    0
    The code to this question as follows:

    Code:

    if (userInput. charAt (0) = =firstLetter) / / if block

    {

    //statements

    }

    else / /else block

    {

    //statements.

    }

    Explanation:

    The description of the above code as follows:

    In the program, we use two variables for user input that is "userInput and firstLetter". The datatype of the userInput is a string that is used to insert any value from the user. Then we use the firstLetter variable the datatype of the variable is char because it is used to detect first character. To detect this we define the conditional statement. In the if block we check condition that userInput first index value is equal to firstLetter it will print "Found match: value". In else block if the value does not match it will print "No match: value".
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write an expression to detect that the first character of userinput matches firstLetter. 1 import java. util. Scanner; 3 public class ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers