“三权分立”的学说奠定了资产阶级 * * 的理论基础,这一学说是由谁提出来的()
A.伏尔泰
B.孟德斯鸠
C.卢梭
D.培根
参考答案:B
在( )合同结构中,设备的设计与制造任务一起也可以组成设计制造总承包合同;而设备的储运任务可由一个独立合同承包,也可由若干并列合同或时序合同承包;设备安装任务可以由一个独立合同承包,也可由并列或时序合同承包。
A.横向
B.纵向
C.时序
D.层次
阅读下列程序,请写出该程序的功能。 import java. awt. *;import java. awt. event. *;import java. applet. *; public class Test34 extends Applet implements ActionListener String msg=" ";Button bList[]=new Button[3]; public void init() Button yes=new Button("Yes");Button no=new Button("No"); Button maybe=new Button("Undecided"); bList[0]=(Button)add(yes);bList[1]=(Button)add(no); bList[2]=(Button)add(maybe); for(int i=0;i<3;i++) bList[i].addActionListener(this);public void actionPerformed(ActionEvent ae) for(int i=0;i<3;i++) if(ae.getSource()==bList[i]) msg="You pressed"+bList[i].getLabel(); repaint(); public void paint(Graphics g)g.drawString(msg,6,100);