Programming Fundametals
วันอังคารที่ 14 ตุลาคม พ.ศ. 2557
count words 01-10[2]
void setup(){
String s = "Welcome to Thailand";
int count = count_words(s);
println(count);
}
int count_words(String s){
int count = 1;
for(int i=0;i<s.length();i++){
if(s.charAt(i) ==' '){
count=count+1;
}
}
return count;
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น
บทความที่เก่ากว่า
หน้าแรก
สมัครสมาชิก:
ส่งความคิดเห็น (Atom)
ไม่มีความคิดเห็น:
แสดงความคิดเห็น