add Variant0.java for lab3
This commit is contained in:
parent
bfdfd65153
commit
f7b11d9444
|
@ -1,3 +1,5 @@
|
||||||
|
package lab3;
|
||||||
|
|
||||||
public class Lab3 {
|
public class Lab3 {
|
||||||
private static final int REPETITION_NUMBER = 10;
|
private static final int REPETITION_NUMBER = 10;
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
|
@ -0,0 +1,18 @@
|
||||||
|
package lab3;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Знайти найбільшу кількість речень заданого тексту, в яких є однакові слова.
|
||||||
|
*/
|
||||||
|
public class Variant0 {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
String textString = "A, a. B a. B a. B a. C.";
|
||||||
|
final String[] sentencesStrings = textString.split("\\. ?");
|
||||||
|
for (String sentencesString : sentencesStrings) {
|
||||||
|
System.out.println(sentencesString);
|
||||||
|
}
|
||||||
|
// System.out.println(Arrays.toString(sentencesStrings));
|
||||||
|
System.out.println("++++++++++++");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue