#include <stdio.h>
int main(){
int age = 18;
float height = 1.85;
char unit = 'm';
printf("小明今年%d岁\n", age);
printf("小明身高%f %c\n", height, unit);
printf("小明现在在慕课网上学习IT技术");
return 0;
}
https://www.imooc.com/code/5119这是我做的仅供参考
%f和%c之间是不是有空格了?貌似不需要空格。