最新回答 答案
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("小明現(xiàn)在在慕課網(wǎng)上學習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("小明現(xiàn)在在慕課網(wǎng)上學習IT技術");?
return 0;
}
2020-03-27
舉報
2020-03-27
#include <stdio.h>
int main()
{
? ? int x = 5;
? ? int y = 8;
? ? //在這里合適的位置加上括號使z的值為4
? ? int z = (x*8)/(y+2);
? ? printf("z=%d\n", z);
? ? return 0;??
}