Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
111814 令狐文丽 12自由落体 C++ Accepted 0 MS 260 KB 157 2025-03-06 17:00:25

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ float m = 100; for(int i = 1;i<=10;i++){ m = m /2; } printf("%.6f",m); return 0; }