mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
19 lines
307 B
C
19 lines
307 B
C
|
#include <math.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
double x;
|
||
|
|
||
|
scanf("%lf", &x);
|
||
|
|
||
|
if (x < 1) {
|
||
|
printf("%.3lf\n", x);
|
||
|
} else if (1 <= x && x < 10) {
|
||
|
printf("%.3lf\n", sqrt(x * 2 - 1));
|
||
|
} else { // x >= 10
|
||
|
printf("%.3lf\n", log(x * 3 - 11));
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|