#include <iostream>
using namespace std;
#include <stdlib.h>
#include <string.h>
int main()
{
int* p=NULL;
cout << "请输入你要输入的个数:" << endl;
int n;
cin >> n;
p = (int*)malloc(sizeof(int)*n);
for (int i = 0; i < n; i++)
{
cout << "请输入第" << i + 1 << "个数据" << endl;
cin >> p[i]; ***********************************
}
cout << "您输入的数字为:" << endl;
for (int i = 0; i < n; i++)
{
cout << p[i] << " " << endl; ***********************************
}
free(p);
return 0;
}
```****
严重性 代码 说明 项目 文件 行 禁止显示状态
警告 C6385 正在从 "p" 读取无效数据。 setw()函数 E:\visual std(源码)\setw()函数\setw()函数\setw().cpp 15
警告 C6011 取消对 NULL 指针“p”的引用。 setw()函数 E:\visual std(源码)\setw()函数\setw()函数\setw().cpp 15