谁能不死 发表于 2019-9-26 12:57:16

怎么测试的程序还提示有错误?

#include<iostream.h>
void main()
{
   int i,count,*p;
   cin>>count;
   p=new int;
   for(i=0;i<count;i++)
      cin>>p;
   for(i=0;i<count;i++)
      cout<<p<<" ";
   delete []p;
}


--------------------Configuration: test - Win32 Debug--------------------
Compiling...
Error spawning cl.exe

test.obj - 1 error(s), 0 warning(s)



大神给看看问题出在哪了?

jackz007 发表于 2019-9-26 13:52:36

https://jingyan.baidu.com/article/546ae185392fb71148f28c5f.html

谁能不死 发表于 2019-9-26 15:15:13

jackz007 发表于 2019-9-26 13:52
https://jingyan.baidu.com/article/546ae185392fb71148f28c5f.html

非常感谢,现在已经设置好了{:5_109:}

页: [1]
查看完整版本: 怎么测试的程序还提示有错误?