# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
10118 | 2014-10-15T10:48:49 Z | lavataste | 제곱근 구하기 1 (gs13068_sqrt1) | C | 0 ms | 0 KB |
#include<stdio.h> #include<math.h> int main() { float N; scanf("%f", &N); N=sqrt(N); printf("%f", N); return 0; }
# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
10118 | 2014-10-15T10:48:49 Z | lavataste | 제곱근 구하기 1 (gs13068_sqrt1) | C | 0 ms | 0 KB |
#include<stdio.h> #include<math.h> int main() { float N; scanf("%f", &N); N=sqrt(N); printf("%f", N); return 0; }