题目内容

给出下列【代码】注释标注的代码的输出结果。import java.util.regex.*;public class E {public static void main(String args[ ]) {String s = "市话12.8元,长途:8.2元,短信10.9";String regex = "[0-9]+[.][0-9]+";Pattern p =Pattern.compile(regex);Matcher m =p.matcher(s);double sum =0;while(m.find()) {String item = m.group();sum = sum+Double.parseDouble(item);}int n = (int)sum;System.out.printf("%d",n);//【代码】}}

查看答案
更多问题

给出下列【代码】注释标注的代码的输出结果。import java.util.regex.*;public class E {public static void main(String args[ ]) {String s = "we are students(we are from Beijing)";String regex = "[a-zA-Z]+";Pattern p =Pattern.compile(regex);Matcher m =p.matcher(s);int count =0;String item ="";while(m.find()) {item = m.group();count ++;}System.out.printf("%d:%s",count,item);//【代码】}}

激素在血中的浓度很低,但生理效应十分明显的原因是

A. 激素的特异性强
B. 激素的半衰期长
C. 激素间有协同作用
D. 激素间有允许作用
E. 激素有高效能生物放大作用

下列哪一项不属于下丘脑调节肽

A. 促甲状腺激素释放激素
B. 促肾上腺皮质激素释放激素
C. 促性腺激素释放激素
D. 催产素

由下丘脑视上核神经元合成的是

A. 生长激素
B. 血管升压素
C. 催乳素
D. 卵泡刺激素
E. 黄体生成素

答案查题题库