5-510寝室课后习题4.35

#include<stdio.h>
#include<math.h>
main()
{
    float a,b,c;
    printf("请输入两个整数: 
");
    scanf("%d%d",&a,&b);
    if(a>=b)
{c=a*b;}
    else
{c=a/b;}
printf("c的值为:%f
",c);
} 
原文地址:https://www.cnblogs.com/q07925758237/p/10631978.html