首页 > 代码库 > 杭电2073
杭电2073
1 #include<stdio.h> 2 #include<math.h> 3 int main() 4 { 5 int n,i,t; 6 double x1,y1,x2,y2,s; 7 while(~scanf("%d",&n)) 8 { 9 while(n--) 10 { 11 scanf("%lf%lf%lf%lf",&x1,&y1,&x2,&y2); 12 if(x2+y2 < x1+y1) 13 { 14 t=x1; 15 x1=x2; 16 x2=t; 17 t=y1; 18 y1=y2; 19 y2=t; 20 } 21 t=0; 22 if(x1) 23 { 24 y1+=x1; 25 t-=x1; 26 x1=0; 27 } 28 if(y2) 29 { 30 x2+=y2; 31 t-=y2; 32 y2=0; 33 } 34 for(i=y1,s=0; i<x2; ++i) 35 s+=sqrt(i*i+(i+1)*(i+1)); 36 for(i=y1; i<=x2; ++i) 37 t+=i; 38 s+=t*sqrt(2); 39 printf("%.3lf\n",s); 40 } 41 } 42 }
1 #include<stdio.h> 2 #include<math.h> 3 int main() 4 { 5 int n,i,t; 6 double x1,y1,x2,y2,s; 7 while(~scanf("%d",&n)) 8 { 9 while(n--) 10 { 11 scanf("%lf%lf%lf%lf",&x1,&y1,&x2,&y2); 12 if(x2+y2 < x1+y1) 13 { 14 t=x1; 15 x1=x2; 16 x2=t; 17 t=y1; 18 y1=y2; 19 y2=t; 20 } 21 t=0; 22 if(x1) 23 { 24 y1+=x1; 25 t-=x1; 26 x1=0; 27 } 28 if(y2) 29 { 30 x2+=y2; 31 t-=y2; 32 y2=0; 33 } 34 for(i=y1,s=0; i<x2; ++i) 35 s+=sqrt(i*i+(i+1)*(i+1)); 36 for(i=y1; i<=x2; ++i) 37 t+=i; 38 s+=t*sqrt(2); 39 printf("%.3lf\n",s); 40 } 41 } 42 }
杭电2073
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。