// 输入一行字符串,输出其中的整数 ,如 +1a2 输出12 import java.util.Scanner; public class test4 {     public static void main(String[] args) {         Scanner in = new Scanner(System.in);         while (in.hasNextLine()) {//0             String input = in.nextLine();             String s = input.trim();             String res = "";             if(s!=null && !"".equals(s)){                 for(int i=0;i<s.length();i++){                     if(s.charAt(i)>=48 && s.charAt(i)<=57){                         res += s.charAt(i);                     }                 }             }             System.out.println(res);         }//0     } }