指针在编程中有时很重要的作用 我们可以用它完成一些看似不可能完成的任务 #include using namespace std; void square(int *n){ *n=*n**n; } int main(){ int num = 2; cout<<The original number is <<num<<endl; square(#); cout<<The new value of number is <<num<<endl; return 0; } 上述代码实现的是输出一个数的平方根