Question: String personFields is read from input. personFields contains values delimited by spaces ( ' ' ) . Assign thirdSpace with the index of the third

String personFields is read from input. personFields contains values delimited by spaces (''). Assign thirdSpace with the index of the third occurrence of a space ('') in personFields. Ex: If the input is Hania Harry Ron Maite Rhys Vicente, then the output is: First three fields: Hania Harry Ron import java.util.Scanner; public class FirstThreeFields { public static void main(String[] args){ Scanner scnr = new Scanner(System.in); String personFields; int i; int numOccurrences =0; int thirdSpace =-1; personFields = scnr.nextLine(); System.out.println("First three fields: "+ personFields.substring(0, thirdSpace)); }}

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 Programming Questions!