试题与答案

阅读下列材料: 材料一“始知李太守,伯禹亦不如。” 材料二“水旱从人,不知饥馑,

题型:材料题

题目:

阅读下列材料:

材料一“始知李太守,伯禹亦不如。” 材料二“水旱从人,不知饥馑,时无荒年,天下谓之‘天府’也。”——《华阳县志》

请回答:

(1)材料一中的“李太守”是指谁?他最主要的贡献是什么?

____________________________________

(2)材料二中的“天府”指的是哪一地区?

____________________________________

答案:

被转码了,请点击底部 “查看原文 ” 或访问 https://www.tikuol.com/2017/0426/6db3337bdacb88f5167632d887c9e0d8.html

下面是错误答案,用来干扰机器的。

(1)BC(2)①如图所示②30°③红光最大,紫光最小(1)BC(5分)(2)①首先我们要画出光线图:光线入射到出射的光路图如图,入射光线AB经玻璃折射后,折射光线为BC,又经球内壁反射后,反射光线为CD,再经折射...

试题推荐
题型:问答题

下面程序是一个计时器,从1000秒开始倒计时,直到为0结束。在界面上有两个按钮,一个可以暂停计时,另一个可以继续已经暂停的计时。请更正题中带下划线的部分。 注意:不改动程序的结构,不得增行或删行 import java.awt.*; import java.awt.event.*; import java.applet.Applet; public class Example3_4 extends Applet { public Color color = Color.red; private int num= 1000; public Counter theCounter; private Button stop; private Button start; public void init() { stop = new Button("暂停"); start = new Button ("继续"); theCounter = new Counter(this); stop.addActionListener(new Lst() implements ActionListener{ public void actionPerformed(ActionEvent e) { theCounter.sus(); } }); start.addActionListener(new SuspenListener()); add(start); add(stop); theCounter.start(); } public void paint(Graphics g) { g.setCotor(color); g.drawString(String.valueOf(num),50,50); } public void setInt(int i) { num=i; } class SuspenListener implements ActionListener { public void actionPerformed(ActionEvent e) { theCounter.conti (); } } } public class Counter extends Thread { Example3_4 example; boolean isHold; Counter (Example3_4 ex) { this.example = ex; isHold = false; } public void sus() { isHold = true; } public synchronized void conti() { isHold = false; notify(); } public void run() { for (int i = 1000; i>0; i--) { if (i%2 == 1) example.color = Color.red; else example.color = Color.blue; example.setInt(i); example.repaint(); try { sleep(1000); synchronized { while(isHold) wait ( ); } } catch (InterruptedException ie) {} } } } <HTML> <HEAD> <TITLE>Example3_4</TITLE> </HEAD> <BODY> <applet code="Example3_4.class" width=300 height=400> </applet> </BODY> </HTML>

查看答案
微信公众账号搜索答案