主题:个为大神,求帮忙,看看这个程序,不知道哪里错了!!!
/*编写一个程序,其功能为:从键盘上输入俩个整形数据,分别存放在整形变量a和b中,然后输出表达式a/b和a%b的值*/
#include<stdio.h>
void main()
{
int a,b,c,d;
printf("Please enter the two plastic data:");
scanf("%d%d",&a,&b);
c=a/b;
d=a%b;
printf("a/b=%d,a%b=%d",&c,&d);
}
#include<stdio.h>
void main()
{
int a,b,c,d;
printf("Please enter the two plastic data:");
scanf("%d%d",&a,&b);
c=a/b;
d=a%b;
printf("a/b=%d,a%b=%d",&c,&d);
}