Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
101179 李昊宇 12自由落体 C++ Time Limit Exceeded 1000 MS 248 KB 175 2024-12-14 15:34:41

Tests(0/1):


Code:

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