写出数学式x/y+z 的C语言表达式

来源:学生作业帮助网 编辑:作业帮 时间:2024/04/28 03:24:24
写出数学式x/y+z 的C语言表达式

写出数学式x/y+z 的C语言表达式
写出数学式x/y+z 的C语言表达式

写出数学式x/y+z 的C语言表达式
#include
#include
#include
int main()
{
float x,y,z;
x=2;y=3;
z=4;
printf("%f",x/y+z);
return 0;
}