Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
88987 汤奕硕 03自由落体 C++ Accepted 1 MS 264 KB 185 2024-08-21 16:13:46

Tests(1/1):


Code:

#include <iostream> #include <cstdio> using namespace std; int main() { const float G=9.8; cout<<G*5<<endl; cout<<G*10<<endl; cout<<G*15<<endl; return 0; }