题目内容

《天工开物》所记载的抗菌物质“丹曲”能够治病、防腐,即现在的()。

A. 黄曲霉素
B. 红曲霉素
C. 溶菌酶
D. 抗生素

查看答案
更多问题

弗莱明发现了产生青霉素霉菌的重要菌株,并命名了“青霉素”一词,但他并没有分离和鉴定这种物质。

A. 对
B. 错

java方法里的代码有3种结构,分别是顺序结构、( )、( )

以下是用swith语句判断学生成绩等级的程序,读懂程序,并在括号处填上合适的代码import java.util.Scanner;public class Sample {public static void main(String[] args) {int score;System.out.println("请输入一个整数:");Scanner s=new Scanner(System.in);score=s.nextInt();if ( ) { //如果输入的数字超出成绩的范围System.out.println("输入有误");return;// 这里就直接退出了}switch (score / 10) {case ( ):case 9:System.out.println("A");break;case 8:System.out.println("B");break;case 7:System.out.println("C");break;case 6:System.out.println("D");break;( ):System.out.println("E");}}}//这个程序还不是特别健壮,如果输入的数不是整数或输入的数超过整数范围,会出错

要在屏幕上打印如下图形,请将以下代码补充完整。*之间相隔一个制表符*************************public class Star {public static void main(String[] args) {for(int j=0;_____________;____________){for(int i=0;_____________;_____________){System.out.___________________________;}________________________________;}}}

答案查题题库