编辑代码

#include <stdio.h>
int main () {
    float a = 2.0333;
    double b = 2.0333333;
    printf("a = %f,b = %lf\n",a,b);
    return 0;
}