單項(xiàng)選擇題

2012年5月8日,商務(wù)部發(fā)布公告稱,將對(duì)原產(chǎn)于歐盟和日本的進(jìn)口相關(guān)高性能不銹鋼無(wú)縫鋼管實(shí)施臨時(shí)反傾銷措施,要求對(duì)相關(guān)企業(yè)征收9.7%~39.2%不等的保證金。商務(wù)部調(diào)查認(rèn)為,中國(guó)相關(guān)高性能不銹鋼無(wú)縫鋼管產(chǎn)業(yè)受到了實(shí)質(zhì)損害,自5月9日起,上述裁定結(jié)果將開(kāi)始實(shí)施。這表明()

A.我國(guó)政府堅(jiān)定地維護(hù)自己的國(guó)家利益
B.我國(guó)尊重其他國(guó)家的正當(dāng)利益
C.當(dāng)前國(guó)際關(guān)系中的競(jìng)爭(zhēng)日益激烈
D.維護(hù)國(guó)家利益是我國(guó)外交政策的宗旨
題目列表

你可能感興趣的試題

問(wèn)答題

下面是一個(gè)用狀態(tài)機(jī)設(shè)計(jì)的自動(dòng)售貨機(jī),one_dollar 代表投幣一元,half_doller 代表投幣五角。則下列說(shuō)法正確的是 module machine(one_dollar, half_dollar, collect,half_out, dispense, reset,clk); parameter idle=2"b00, half=2"b01, one = 2"b10; input one_dollar, half_dollar, reset, clk; output collect, half_out, dispense; reg collect, half_out, dispense; reg[1:0] D; always @(posedge clk) begin if(reset) begin dispense=0; collect=0; half_out=0; D=idle; end else case (D) idle: if (half_dollar) begin dispense=0; collect=0; half_out=0; D=half; end else if(one_dollar) begin dispense=0; collect=0; half_out=0; D=one; end else begin dispense=0; collect=0; half_out=0; D=idle; end half: if(half_dollar) begin dispense=0; collect=0; half_out=0; D=one; end else if(one_dollar) begin dispense=1; collect=1; half_out=0; D=idle; end else begin dispense=0; collect=0; half_out=0; D=half; end one: if(half_dollar) begin dispense=1; collect=1; half_out=0; D=idle; end else if(one_dollar) begin dispense=1; collect=1; half_out=1; D=idle; end else begin dispense=0; collect=0; half_out=0; D=one; end default: begin dispense=0; collect=0; half_out=0; D=idle; end endcase end endmodule
A、飲料的售價(jià)為一元五角
B、該狀態(tài)機(jī)是mealy型狀態(tài)機(jī)
C、該狀態(tài)機(jī)的輸出只與當(dāng)前狀態(tài)有關(guān)
D、當(dāng)投入兩元錢(qián)后,找零五角,同時(shí)狀態(tài)機(jī)跳轉(zhuǎn)至idle狀態(tài)

答案: B
微信掃碼免費(fèi)搜題