小明身高1.850000m
#include <stdio.h>int main()
{float height = 1.85;
char unit = 'm';
printf("小明身高%f%c\n", height, unit);
return 0;}