星期一, 10月 03, 2005

project5

project 程式碼

public class project5
{
public static void main(String[] args)
{
String sentence = " I hate you";
int position =sentence.indexOf(" hate ");
String ending=sentence.substring(position+ "hate".length());
System.out.println("The line of text to be charged is:");
System.out.println(sentence);
System.out.println("I have rephrased that line to read");
sentence=sentence.substring(0,position) + " love " + ending;
System.out.println(sentence);
}
}

0 Comments:

張貼留言

<< Home