-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSalutationProgram.java
More file actions
49 lines (38 loc) · 1.41 KB
/
SalutationProgram.java
File metadata and controls
49 lines (38 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.lftechnology.programs;
import java.util.Scanner;
public class SalutationProgram {
private Scanner fullNameWithSalutationInput;
private String fullNameWithSalutation;
private String salutation;
public SalutationProgram() {
}
public void run() {
this.initiateRun();
this.askForInput();
if (this.fullNameWithSalutation.length() <= 0) {
System.out.println("->Input can't be empty! Enter again");
this.askForInput();
}
this.splitInput();
System.out.println("Salutation = " + this.salutation);
System.out.println("FullName = " + this.fullNameWithSalutation);
this.endRun();
}
public void initiateRun() {
System.out.println("\n");
System.out.println("->Executing Salutation");
System.out.println("->Please Enter Your Full Name with Salutation (e.g, Mr. John Doe)\n\n");
}
public void endRun() {
System.out.println("-----------------------------------------");
System.out.println("-----------------------------------------\n\n");
}
public void splitInput() {
String[] splited = this.fullNameWithSalutation.split("\\s+");
this.salutation = splited[1];
}
public void askForInput() {
fullNameWithSalutationInput = new Scanner(System.in);
this.fullNameWithSalutation = fullNameWithSalutationInput.nextLine();
}
}