|
The program requires the following functions:
1. Prompt the user for two strings,
2. Read two strings entered by the user
3. Match based on the two strings read in, for example:
* i * tooer, dietooer indicates that the two strings match, and returns true.
co * de, acode indicates that the two strings do not match, and returns false.
How can this function be implemented in the Java language? |
|