mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
12 lines
136 B
C
12 lines
136 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int h;
|
|
|
|
scanf("%d", &h);
|
|
|
|
printf("%.1lf\n", (double)(h - 100) * 0.9 * 2);
|
|
|
|
return 0;
|
|
}
|