求两数的和,差,乘积,商,余数
题目:输入两整数,求其和,差,乘积,商,余数。请高手看下我的程序哪里有问题:
#include "stdio.h"
#include "math.h"
#include "conio.h"
main()
{
int i,j;
long a,b,c,d,e;
printf("please input two numbers:\n");
scanf("%d%d",&i,&j);
a=i+j;
b=i*j;
c=i-j;
d=i/j;
e=i%j;
printf("%d\n%d\n%d\n%d\n%d\n",a,b,c,d,e);
getch();
}
编译通过了,但运行结果不正确
[ 本帖最后由 Devon_Ye 于 2010-1-14 10:10 编辑 ]