Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89132 王煜鑫 03自由落体 C++ Accepted 0 MS 264 KB 212 2024-08-22 15:11:52

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int d,e,f,a,b,c; a=5; b=10; c=15; d=a*9.8; e=b*9.8; f=c*9.8; cout<<d<<endl; cout<<e<<endl; cout<<f<<endl; }