#include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ struct Circle { int radius; double girth; double area; }a1, & cir1=a1, *a3=new struct Circle, *& cir3=a3; //注意:參考變數宣告時,就要馬上指派(初始化),&cir1=a1 int main(int argc, char** argv) { //1.宣告結構參考變數:方法1 //在struct{..}a1,& cir1=a1, 在struct下方宣告參考變數(且要指派 = 初始化) //cir1 = a1; cir1.radius = 2; cout<<"cir1的半徑 = "<