#include <iostream>using namespace std;void main(){ int *p,**pp; int n = 100; p = &n; pp = &p; cout << *p << " " << **pp << endl;//输出 100 100 int tem; cin >> tem;
}