Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104973 徐梓涵 03自由落体 C++ Wrong Answer 0 MS 264 KB 172 2025-01-11 20:32:31

Tests(0/1):


Code:

#include<bits/stdc++.h> using namespace std; float n,m,b,v,c; int main(){ n=15; m=10; c=5; v=9.8; cout<<n*v<<endl<<m*v<<endl<<c*v<<endl; return 0; }


Run Info:

------Input------
0
------Answer-----
49 98 147
------Your output-----
147 98 49