mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
ddd34a4f1c
2000-2099
10 lines
165 B
C++
10 lines
165 B
C++
#include <math.h>
|
|
#include <stdio.h>
|
|
int main(void)
|
|
{
|
|
double r;
|
|
while (scanf("%lf", &r) != EOF)
|
|
printf("%.2lf\n", fabs(r));
|
|
return 0;
|
|
}
|