#include using namespace std;int main(){ double x=1.23456; printf ("%.2lf",x); return 0;}//输出2位精度数。//将%.lf的.后面加数控制小数精度//%.lf的.前面加数控制整数精度//不加照常