Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
88990 欧阳俊懿 03自由落体 C++ Accepted 1 MS 264 KB 171 2024-08-21 16:22:56

Tests(1/1):


Code:

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