Display1.7 Lab 3
Display 1.7
LAB3
Display 1.7
public class LAB5 {
public static void main (String[] args) {
String sentense = "I hate processing";
int position = sentense.indexOf("hate");
String ending =
sentense.substring(position +"hate".length());
System.out.println("01234567890123456789012");
System.out.println(sentense);
System.out.println("The word \"hate\" starts at index"+ position);
sentense = sentense.substring(0 ,position) +"adore"+ending;
System.out.println("The change string is:");
System.out.println(sentense);
}
}
Lab 3
public class LAB5 {
public static void main (String[] args) {
String sentense = "I hate YOU";
int position = sentense.indexOf("hate");
String ending =
sentense.substring("hate ".length());
System.out.println(sentense);
sentense = sentense.substring(0 ,position) +"like"+ending;
System.out.println("The change string is:");
System.out.println(sentense);
}
}
LAB3
Display 1.7
public class LAB5 {
public static void main (String[] args) {
String sentense = "I hate processing";
int position = sentense.indexOf("hate");
String ending =
sentense.substring(position +"hate".length());
System.out.println("01234567890123456789012");
System.out.println(sentense);
System.out.println("The word \"hate\" starts at index"+ position);
sentense = sentense.substring(0 ,position) +"adore"+ending;
System.out.println("The change string is:");
System.out.println(sentense);
}
}
Lab 3
public class LAB5 {
public static void main (String[] args) {
String sentense = "I hate YOU";
int position = sentense.indexOf("hate");
String ending =
sentense.substring("hate ".length());
System.out.println(sentense);
sentense = sentense.substring(0 ,position) +"like"+ending;
System.out.println("The change string is:");
System.out.println(sentense);
}
}
0 Comments:
張貼留言
<< Home