当前位置: 代码迷 >> J2SE >> 杭电2072用java干
  详细解决方案

杭电2072用java干

热度:102   发布时间:2016-04-24 00:38:54.0
杭电2072用java做
[code=Java][/code]
import java.util.Scanner;

//(不同的)单词数
public class HDU2072 {

public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int count = 0;
String s;
String str = "";
while (true) {
while (sc.hasNext()) {
s = sc.next();
if (s.equals("#"))
break;
if (!str.contains(s)) {
str += s;
count++;
}
}
System.out.println(count);
}
}

}
这样说我超时,到底要怎样嘛?

------解决方案--------------------
没问题呀。。。
  相关解决方案