mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
13 lines
174 B
C
13 lines
174 B
C
/*
|
|
作者:千里冰封
|
|
题目:p1206 保留两位小数
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
int main(int argc, char* argv[]) {
|
|
double a;
|
|
scanf("%lf", &a);
|
|
printf("%.2f", a);
|
|
return 0;
|
|
}
|