以下对于线条的说明正确的有()
A.直线意味正直
B.水平线表示安定
C.三角型线稳定牢固
D.发射线有扩张效果
参考答案:A, B, C, D
目前公司新区焦化有几座干熄炉()
A.1
B.2
C.3
D.4
下面程序的运行结果是 【9】 。 #include <iostream> using namespace std; class count static int n; public:count() n++; static int test() for(int i=0;i<4;i++) n++; return n; ; int count::n = O; int main() cout<<count:: test()<<" "; count c1, c2; cout<<count:: test()<<endl; return 0;