#2000: ???第十個測試點


chieh (杰)

學校 : 樹德科技大學
編號 : 6769
來源 : [210.71.23.131]
最後登入時間 :
2009-05-20 00:37:41
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [210.71.23.131] | 發表日期 : 2009-05-19 20:41

import java.util.Scanner;

public class pp {
 public static void main(String[] argv) {
  Scanner ar = new Scanner(System.in);
  int j = 0;
  boolean boo1 = false, boo2 = false;
  while (ar.hasNextLine()) {// 讀取文件
   String s = ar.nextLine();
   for (int i = 0; i < s.length(); i++) {
    if (s.charAt(i) >= 'a' & s.charAt(i) <= 'z'
      || s.charAt(i) >= 'A' & s.charAt(i) <= 'Z') {// 讀取Word第一個字
     boo1 = true;
     // System.out.println(s);
     continue;
    }
    else // 讀取Word結尾
     boo2 = true;
    if (boo1 == true & boo2 == true) {
     j += 1;// 計算Word數量
     boo1 = false;
     boo2 = false;
    }
   }
   System.out.println(j);
   j = 0;
  }
 }
}

 

我是一他是二?????????

 
ZeroJudge Forum