不知道哪里错了,输出错误
#include <stdio.h>
int main()
{
int age = 18;
float height = 1.85;
char unit = 'm';
printf("小明今年%d岁\n", age);
printf("小明身高%f \n", height);
printf("小明现在在慕课网上学习%c技术", unit);
return 0;
}
#include <stdio.h>
int main()
{
int age = 18;
float height = 1.85;
char unit = 'm';
printf("小明今年%d岁\n", age);
printf("小明身高%f \n", height);
printf("小明现在在慕课网上学习%c技术", unit);
return 0;
}
2025-03-22
举报