其他分享
首页 > 其他分享> > AcWing 615. 油耗

AcWing 615. 油耗

作者:互联网

链接
https://www.acwing.com/problem/content/617/

思路
小学解方程的问题

另外需要注意:注意


#include <cstdio>

int main()
{
    int a;//也可以用double定义int
    double b;
    scanf("%d%lf", &a, &b);
    printf("%.3lf km/l",a / b);
    
    return 0;
}

标签:www,%.,int,double,d%,615,printf,油耗,AcWing
来源: https://blog.csdn.net/qq_42637313/article/details/122287013