Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
125895 陈冠樾 03自由落体 C++ Accepted 1 MS 260 KB 233 2025-07-15 16:22:04

Tests(1/1):


Code:

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