我这样子和答案不一样,但意思差不多,可以吗?
#include <stdio.h>
int main()
{
int age = 18;
float height = 1.85;
char unit = 'm';
printf("age=%d\n", age);
printf("height=%f%c\n",height, unit);
printf("小明现在在慕课网上学习IT技术");
return 0;
}
#include <stdio.h>
int main()
{
int age = 18;
float height = 1.85;
char unit = 'm';
printf("age=%d\n", age);
printf("height=%f%c\n",height, unit);
printf("小明现在在慕课网上学习IT技术");
return 0;
}
2019-02-01
举报