#include <iostream> using namespace std; int main(int argc, char *argv[]){ int *p=new int; *p=5; cout<<p<<" is "<<*p<<endl; delete p; cout<<p<<" is "<<*p<<endl; return 0; }
65,187
社区成员
250,526
社区内容
加载中
试试用AI创作助手写篇文章吧