-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMixStart.java
31 lines (24 loc) · 1.13 KB
/
MixStart.java
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
package Warmup01;
public class MixStart {
public static boolean mixStart(String str){
String temp = "ix";
boolean flag = false;
if(str.length() > 3) {
if (temp.equals(str.substring(1, 3))) {flag = true;}
} else if (str.length() < 3) { flag = false; }
return flag;
}
//////////////////////////////////////////////////////////
// More precise wat=y to solve the task: //
// public static boolean mixStart(String str){ //
// if (str.length() < 3) return false; //
// String two = str.substring(1, 3); //
// //
// if (two.equals("ix")) { //
// return true; //
// } else { //
// return false; //
// } //
// } //
//////////////////////////////////////////////////////////
}