33、計算

#include<stdio.h>
#include <math.h> 
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