Run ID:125889

提交时间:2025-07-15 16:18:21

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