Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
138984 胡海峰老师 03自由落体 C++ Accepted 0 MS 264 KB 237 2025-11-30 18:19:56

Tests(1/1):


Code:

#include <iostream> //designed by hu 2025-10 using namespace std; int main(){ float g=9.8; float v1,v2,v3; v1= g*5; v2 = g*10; v3= g*15; cout<< v1<<endl; cout<< v2 << "\n"; cout<< v3<<endl; return 0; }