情在心中独自知
2020-03-27 15:34
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 x = 5;
int y = 8;
//在这里合适的位置加上括号使z的值为4
int z = (x*8)/(y+2);
printf("z=%d\n", z);
return 0;
}
C语言入门
926028 学习 · 20793 问题
相似问题