Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87552 潘泽霖 03自由落体 C++ Accepted 1 MS 260 KB 177 2024-08-10 16:18:54

Tests(1/1):


Code:

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