【单选题】阅读以下程序 public class Count { static int count; int number; public Count() { count = count + 1; number = count; } } class Test { public static void Main() { Count a = new Count(); Count b = new Count();...
【简答题】以下程序输出的第一行是__________,第二行是__________,第三行是__________,第四行是__________。 #include using namespace std; class A { int i; public: static int count; A(int a =0) { i=a+count; count++; cout< } }; int A::count=0...