这个程序在学校机房打就是对的,在我自己的笔记本上运行结果不对,这是为什么?初学,难道是我电脑里安装的2010有问题?
#include<stdio.h>int main()
{int *p1,*p2,*p,a,b;
printf("please enter two integer numbers;");
scanf("%d,%d",&a,&b);
p1=&a;
p2=&b;
if(a<b)
{p=p1;p1=p2;p2=p;}
printf("a=%d,b=%d\n",a,b);
printf("max=%d,min=%d\n",*p1,*p2);
return 0;
}