Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92086 贾雨泽 03自由落体 C++ Accepted 0 MS 264 KB 209 2024-09-28 11:35:10

Tests(1/1):


Code:

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