public class MyTest {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
String line="";
StringBuffer sb = new StringBuffer();
while(!(line=sc.next()).equals("exit")){
sb.append(line);
}
line = sb.toString();
String result = "";
for(int i=0;i
if(ch>47 && ch<58)
result+=ch;
}
System.out.println(result);
}
}
我感觉这样的问题还是学一种思想和解决问题的方式,尤其是刚开始入门,不要这样整道题的去问别人,这样对你以后形成一种面向对象编程的思想产生障碍,尽量自己去研究研究,当你入了进去之后你就会发现抠唆代码也是一件很有意思的事情的 ~~good luck
用charAt()这个方法吧,我记得