Run ID:125895

提交时间:2025-07-15 16:22:04

#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; }