程序在vc++2008里出错,请求帮助!
#include"stdio.h"int max(int a,int b);
main()
{
int x,y,z;
printf("input two numbers:\n");
scanf("%d,%d,&x,&y");
z=max(x,y);
printf("maxnum=%d",z);
}
int max(int a,int b)
{
if(a>b)
return a;
else
return b;
}
程序不会错的,但每次运行都会出现:
cc.exe 中的 0x5e9f6af2 处未处理的异常: 0xC0000005: 写入位置 0x00000000 时发生访问冲突
这样的错误提示,请问这是怎么回事?
或者大家帮忙推荐其他编程工具给我,我刚学,什么都不懂。谢谢!!!!