保留小数问题

来源:2-5 格式化输出语句

鵰磃

2018-10-09 19:40

# include<stdio.h>

int add(int,int);

int reduce(int,int);

int mul(int,int);

float divide(int,int);

int main()

{

    int x,y,a,b,c;

    float d;

    scanf("%d %d",&x,&y);

    a=add(x,y);

    b=reduce(x,y);

    c=mul(x,y);

    d=divide(x,y);

    printf("The add is:%d\n",a);

    printf("The reduce is:%d\n",b);

    printf("The mul is:%d\n",c);

    printf("The divide is:%3f\n",d);

}

int add(int e,int f)

{

    int add;

    add=e+f;

    return add;

}

int reduce(int e,int f)

{

    int reduce;

    reduce=e-f;

    return reduce;

}

int mul(int e,int f)

{

    int mul;

    mul=e*f;

    return mul;

}

float divide(int e,int f)

{

    float divide;

    divide=e/f;

    return divide;

}


写回答 关注

1回答

  • 紧闭的恋恋瞳
    2018-10-09 20:47:06

    e和f是什么好像没有定义啊。。

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926020 学习 · 20793 问题

查看课程

相似问题