8 lines
95 B
C
8 lines
95 B
C
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
int main() {
|
|
printf("%f", sqrt(2));
|
|
|
|
return 0;
|
|
}
|