#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("%s","小明現(xiàn)在在慕課網(wǎng)上學習IT技術(shù)"); 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("%s","小明現(xiàn)在在慕課網(wǎng)上學習IT技術(shù)");
return 0;
}
2015-12-12
謝謝分享