根据《关于统计上划分经济成分的规定》,()不属于非公有经济。
A.私有经济
B.港澳台经济
C.外商经济
D.集体经济
参考答案:D
解析:集体经济属于公有经济。
【说明】清点盒子。本程序当用户输入一个整数值时,一切正常;当输入其他数值时,程序就出错。现在已做了改进,请填空。import java. text. NumberFormat;Public class InventoryLoop{ public static void main(String args[]) { String numBoxesIn; Int numBoxes; Double boxPrice=3.25; Boolean gotGoodInput=false; NumberFormat currency=NumberFormat. (1) ; do { System.out. print(“How many boxes do we have”); numBoxesIn=DummiesIO. (2) ; try { numBoxes=Integer.parseInt( (3) ); system. out. print("The value is"); system.out. println(currency, format (numBoxes*boxPrice)); gotGoodInput=true; catch( (4) ) { System.out.println(); System.out. println(That’s not a number."); } }while( (5) );//输入不正确时 System. out.println("That’s that."); }}