```c #include <stdio.h> #include <math.h> int main() { int x; scanf("%d", &x); double y = log(x) / log(2); printf("%.2lf\n", y); return 0; } ``` [2024-10-23 20:32:18 | AI写代码神器 | 67点数解答]