-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomerSupport.java
More file actions
9 lines (9 loc) · 1.18 KB
/
CustomerSupport.java
File metadata and controls
9 lines (9 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
public class CustomerSupport {
public static void main(String[] args) {
//final String COMPANY_NAME = "Videotron";
final String COMPANY_NAME = "Cogeco";
System.out.println("Your call is very important to us at " + COMPANY_NAME + ". Please stay at the line and a " + COMPANY_NAME + " customer representative will be with you shortly. Your call really is important to us even though we at " + COMPANY_NAME + " rip you off all the time and take all of your money. " + COMPANY_NAME + " is currently experiencing a high volume of customer complaints, which is not surprising because all we at " + COMPANY_NAME + " do is steal your money. Have a nice day!");
COMPANY_NAME = "Bell";
System.out.println("Your call is very important to us at " + COMPANY_NAME + ". Please stay at the line and a " + COMPANY_NAME + " customer representative will be with you shortly. Your call really is important to us even though we at " + COMPANY_NAME + " rip you off all the time and take all of your money. " + COMPANY_NAME + " is currently experiencing a high volume of customer complaints, which is not surprising because all we at " + COMPANY_NAME + " do is steal your money. Have a nice day!");
}
}