双精度浮点型double

#include  

using namespace std;

int main(){
	double a;//双精度double 
    scanf("%lf",&a);
    printf("%f",a);//输出浮点型 
}

你可能感兴趣的:(算法)