답안 #7598

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
7598 2014-08-12T08:28:45 Z jihoon 제곱근 구하기 1 (gs13068_sqrt1) C++
0 / 1
0 ms 1088 KB
#include<cstdio>
long long int nn;
long double prev,nw;
int main(){
  scanf("%lld",&nn);
  nw=10000.0;
  while(prev!=nw){
    prev=nw;
    nw+=(nn/nw);
    nw/=2;
  }
  printf("%.6lf",prev);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 1088 KB Output isn't correct
2 Halted 0 ms 0 KB -