public class MyWord {
final static String[] MY_WORD = { "It's could only be Heineken","Hello,I have to go to somewhere","Someday, I will find my way","Life is not beautiful" };
public static void main(String args[]){
int count,pos;
String[] str = MyWord.MY_WORD;
for(int i=0;i<str.length;i++) {
count = 0;
System.out.println("Find 'e' in this sentence "+str[i]);
System.out.print("Found 'e' at index :");
for(int j=0;j<str[i].length();j++) {
if (str[i].charAt(j)=='e') {
count++;
System.out.print(" "+j);
}
}
System.out.println("\nTotal 'e' : "+count);
System.out.println("**********************************");
}
}
}
ผลที่ได้
อยากให้ช่วยแนะำนำการเขียนเป็นแบบ interface class ต้องแก้ตรงไหนบ้างคับ
Tag : JavaScript, Ajax, jQuery, JAVA
Date :
2013-10-14 02:20:21
By :
Anan1986
View :
1260
Reply :
1
No. 1
Guest
tag มั่ว
เอาแค่ java ก็พอ อย่างอื่นไม่เกี่ยว
ดูจากโค้ดแล้ว เดาว่านายแค่สืบทอด class จาก interface ไม่เป็นแค่นั้นเอง