pvjc26/du1/program.c
2026-03-04 13:23:09 +01:00

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;
}