Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
125889 王培用 03自由落体 C++ Wrong Answer 0 MS 264 KB 171 2025-07-15 16:18:21

Tests(0/1):


Code:

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


Run Info:

------Input------
0
------Answer-----
49 98 147
------Your output-----
49 98