Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2268 彭睿祺 02长方形的面积 C++ Accepted 0 MS 260 KB 188 2023-12-23 15:52:20

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ float a; float b; cin>>a; float d; cin>>d; b=d*a; cout<<b; return 0; }