输入10个数,再输出这10个数,要求用函数与指针解决。
【此程序在VC++6.0里运行,运行过程中出现.exe停止工作的情况,请帮忙找出问题所在。谢谢!】#include<iostream.h>voidInput(int*p)...
【此程序在VC++6.0里运行,运行过程中出现.exe停止工作的情况,请帮忙找出问题所在。谢谢!】
#include <iostream.h>
void Input(int * p);
void Output(int * p);
int main()
{
int *p=0;//初始化
Input(p);//不能写成*p
Output(p);
return 0;
}
void Input(int * p)
{
cout<<"请输入10个整数:"<<endl;
for(;p<p+10;p++)
cin>>*p;//不能写成p
}
void Output(int * p)
{
cout<<"这10个整数为:"<<endl;
for(;p<p+10;p++)
cout<<*p<<" ";//不能写成p
} 展开
#include <iostream.h>
void Input(int * p);
void Output(int * p);
int main()
{
int *p=0;//初始化
Input(p);//不能写成*p
Output(p);
return 0;
}
void Input(int * p)
{
cout<<"请输入10个整数:"<<endl;
for(;p<p+10;p++)
cin>>*p;//不能写成p
}
void Output(int * p)
{
cout<<"这10个整数为:"<<endl;
for(;p<p+10;p++)
cout<<*p<<" ";//不能写成p
} 展开
展开全部
;p<p+10;p++,,循环条件中,随着p的增加,p+10也变化,条件永成立,死循环,应多设一变量
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
main函数中
int* p=0; 这段代码 改成int* p=new int[10];
并且 你for循环也有问题我改了下 如下:
#include <iostream.h>
void Input(int * p);
void Output(int * p);
int main()
{
int *p=new int[10];//初始化
Input(p);//不能写成*p
Output(p);
return 0;
}
void Input(int * p)
{
cout<<"请输入10个整数:"<<endl;
int* a=p;
for(;p<a+10;p++)
cin>>*p;//不能写成p
}
void Output(int * p)
{
cout<<"这10个整数为:"<<endl;
int* a=p;
for(;p<a+10;p++)
cout<<*p<<" ";//不能写成p
}
可以运行成功 你试试
int* p=0; 这段代码 改成int* p=new int[10];
并且 你for循环也有问题我改了下 如下:
#include <iostream.h>
void Input(int * p);
void Output(int * p);
int main()
{
int *p=new int[10];//初始化
Input(p);//不能写成*p
Output(p);
return 0;
}
void Input(int * p)
{
cout<<"请输入10个整数:"<<endl;
int* a=p;
for(;p<a+10;p++)
cin>>*p;//不能写成p
}
void Output(int * p)
{
cout<<"这10个整数为:"<<endl;
int* a=p;
for(;p<a+10;p++)
cout<<*p<<" ";//不能写成p
}
可以运行成功 你试试
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询