题目简单,注意输出格式即可。
#include<stdio.h> int main() { long long int T,S; double X; scanf("%lld%lld",&T,&S); X=T*S/12.0; printf("%5.3lf",X); return 0; }