#include#include int main(){ int x=300,y=500,xf=0; xf=(x*x+y*y)/(2*x +sqrt(x+y)); printf("xf=%d",xf);}
本文共 202 字,大约阅读时间需要 1 分钟。
#include#include int main(){ int x=300,y=500,xf=0; xf=(x*x+y*y)/(2*x +sqrt(x+y)); printf("xf=%d",xf);}
转载于:https://www.cnblogs.com/guojiusong/p/8032398.html