回 帖 发 新 帖 刷新版面

主题:个为大神,求帮忙,看看这个程序,不知道哪里错了!!!

/*编写一个程序,其功能为:从键盘上输入俩个整形数据,分别存放在整形变量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);
}

回复列表 (共2个回复)

沙发

#include <stdio.h>

int main(void)
{
    int a, b;
    printf("Please enter the two plastic data:\n");
    if (scanf("%d%d", &a, &b) != 2)
        printf("Error!\n");
    else
        printf("a/b=%d, a\%b=%d\n", a / b, a % b);
    return 0;
}

板凳

printf输出是c与d不能用取地址符&

我来回复

您尚未登录,请登录后再回复。点此登录或注册