Answer:
In Java:
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class FP {
public static void main(String[] args) {
try {
File myObj = new File("secret.txt");
Scanner scr= new Scanner(myObj);
while (scr.hasNextLine()) {
String data = scr.nextLine();
String[] tokens = data.split(" ");
for(int i =0;i<tokens.length;i+=5){
tokens[i] = tokens[i].substring(0, 1).toUpperCase() + tokens[i].substring(1); }
StringBuilder newstring = null;
newstring = new StringBuilder();
for(String abc:tokens){newstring.append(abc+" "); }
System.out.print(newstring); }
scr.close();
} catch(Exception ex){
System.out.println("An error occurred."); }
}
}
Explanation:
See attachment for complete program where comments were used to explain each line