Question: Write an application InputApplication. (An application has a main method.) Create a Scanner object and do the following.. Ask the user to enter a word

Write an application InputApplication. (An application has a main method.)

Create a Scanner object and do the following..

  1. Ask the user to enter a word using this exact prompt: System.out.print("Enter a word: ");
  2. Use Scanner's next method to get the word
  3. Print the last letter of the word
  4. Ask the user to enter a double using this exact prompt: System.out.print("Enter a double: ");
  5. Use Scanner's nextDouble method to get the double
  6. Now ask the user to enter a integer using this prompt: System.out.print("Enter an integer: ");
  7. Use Scanner's nextInt method to get the integer
  8. Calculate the product of the double and the integer (Product means multiply)
  9. Print the product on a new line.
  10. Print the integer portion of the product on a new line.(Think cast)

Only create one Scanner.

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!