这个程序不知道咋么改
#include <stdio.h>
int main()
{
int age = 18;
float height = 1.85;
char unit = 'm';
printf("小明今年?岁\n", age);
printf("小明身高?\n", height, unit);
printf("小明现在在慕课网上学习IT技术\n");
return 0;
}
#include <stdio.h>
int main()
{
int age = 18;
float height = 1.85;
char unit = 'm';
printf("小明今年?岁\n", age);
printf("小明身高?\n", height, unit);
printf("小明现在在慕课网上学习IT技术\n");
return 0;
}
2015-11-24
举报