保留3位小数: printf(“%0.3f”, s*h / 12.0); ```
using namespace std; int main() { long s,h; cin>>s; cin>>h; printf(“%0.3f”, s*h / 12.0); return 0; }```