Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92726 唐安轩 12自由落体 C++ Accepted 1 MS 264 KB 174 2024-10-06 11:50:13

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int n; double c=100; for(n=1;n<=10;n++){ c=c/2; } printf("%.6lf",c); return 0; }