Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
90660 | 何睿函 | 03七巧板 | C++ | Wrong Answer | 1 MS | 264 KB | 129 | 2024-09-16 11:49:49 |
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c; a=3.5; b=2.5; c=a*b; cout<<c; return 0; }
------Input------
85.9 8.4
------Answer-----
721.56
------Your output-----
8.75