Files
BasicsOfComputerSoftwareEng…/POP/01/Exercise3-1.c
2023-02-21 10:56:54 +08:00

11 lines
201 B
C

#include <stdio.h>
#include <math.h>
int main() {
double a, b, z;
printf("input a and b");
scanf("%lf, %lf", &a, &b);
z = exp(a * a + b * b);
printf("z = %f\n", z);
return 0;
}