What's wrong out there ? Problem 1001
#include<stdio.h>
#include<math.h>
int main(){
unsigned long long int a,b,c,d;
double Sqrt,Sqrt1,Sqrt2,Sqrt3;
scanf("%llu %llu %llu %llu",&a,&b,&c,&d);
Sqrt=sqrt(a);
Sqrt1=sqrt(b);
Sqrt2=sqrt(c);
Sqrt3=sqrt(d);
printf(" %0.4lf %0.4lf %0.4lf %0.4lf",Sqrt,Sqrt1,Sqrt2,Sqrt3);
}
Edited by author 23.06.2022 13:46
Edited by author 23.06.2022 13:46