11 lines
177 B
C
11 lines
177 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
double x, a, b, c, y;
|
|
|
|
if (scanf("%lf", &x) != 1) {
|
|
fprintf(stderr, "Error: failed to read a number for x\n");
|
|
return;
|
|
}
|
|
return 0;
|
|
} |