#include <iostream> using namespace std; int main() { int n = 10; cout << "n 的值:" << n << endl << "n 位址:" << &n << endl; return 0; }. 執行結果:
確定! 回上一頁