add 4-xpr1.c

This commit is contained in:
juan 2021-09-29 19:14:47 +08:00
parent 461b156b05
commit 39f7a17cc1
No known key found for this signature in database
GPG key ID: 5C1E5093C74F1DC7

15
pset2/4-xpr1.c Normal file
View file

@ -0,0 +1,15 @@
#include <math.h>
#include <stdio.h>
int main(void) {
// initialize variables
double a, b, c, d;
scanf("%lf %lf %lf %lf", &a, &b, &c, &d);
// trinary expression magic. same as above
(b * c - d < 1e-6 && b * c - d > -1e-6) ? printf("error")
: printf("%.1lf", a / (b * c - d));
return 0;
}