Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104977 徐梓涵 03自由落体 C++ Accepted 0 MS 264 KB 172 2025-01-11 20:34:06

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; float n,m,b,v,c; int main(){ n=15; m=10; c=5; v=9.8; cout<<c*v<<endl<<m*v<<endl<<n*v<<endl; return 0; }