Run ID:138984

提交时间:2025-11-30 18:19:56

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