默认就近使用局部同名变量 #include<iostream>usingnamespacestd;intage=10;// 全局变量age = 10intmain(){intage=100;// 局部变量age = 100// 就近原则,局部优先使用局部变量cout<<"age = "<<age;// age = 100} 若要使用全局变量,可在变量名前加:: #include<iostream>usingnamespacestd;intage=10;intm...