c++ AC

宿狐  •  1年前


include <bits/stdc++.h>

using namespace std;

int main() {

double a, b, c;
scanf("%lf %lf %lf", &a, &b, &c);
a = a / 10;
b = b * 10 + c;
printf("%.2lf", a / b);
return 0;

}


评论:

请先登录,才能进行评论