#include using namespace std; int main() { int a; a = 5; cout << "變數a的值為" << a << "。\n"; cout << "變數a的位址為" << &a << "。\n"; return 0; }