Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113989 石茂诤 03自由落体 C++ Accepted 0 MS 264 KB 210 2025-03-18 13:42:14

Tests(1/1):


Code:

#include <iostream> using namespace std; int main() { double v1,v2,v3,g = 9.8; v1 = g*5; v2 = g*10; v3 = g*15; cout << v1 <<endl; cout << v2 <<endl; cout << v3 <<endl; }