Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94693 魏宏搏 13自由落体 C++ Compile Error 0 MS 0 KB 196 2024-10-26 11:06:22

Tests(0/0):


Code:

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


Run Info:

Main.cc:2:1: error: 'uisng' does not name a type
 uisng namespace std;
 ^