用long long 不然数据可能会爆, 12.0才能变为浮点数
#include <cstdio> using namespace std; int main () { long long S,T; scanf("%lld%lld",&S,&T); double W = S * T / 12.0; printf("%.3lf", W); return 0; }