# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
10117 | 2014-10-15T10:48:17 Z | lavataste | 제곱근 구하기 1 (gs13068_sqrt1) | C | 0 ms | 0 KB |
#include<stdio.h> #include<math.h> int main() { float N; scanf("%f", &N); printf("%f", sqrt(N)); return 0; }