总是输出错误那出毛病了
include <stdio.h>
int main(){
int age = 18;
float height = 1.85;
char unit = 'm';
printf("小明今年18岁\n", age);
printf("小明身高1.850000m\n", height, unit);
printf("小明现在在慕课网上学习IT技术");
return 0;
}
include <stdio.h>
int main(){
int age = 18;
float height = 1.85;
char unit = 'm';
printf("小明今年18岁\n", age);
printf("小明身高1.850000m\n", height, unit);
printf("小明现在在慕课网上学习IT技术");
return 0;
}
2020-01-29
举报