運行失敗是哪里有問題?。?/h1>
#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;
}
#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;
}
2020-10-30
%f,%c ? 中間不加 ,
2020-09-24
#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;
}