码迷,mamicode.com
首页 > 其他好文 > 详细

参考代码1021-1026

时间:2019-10-16 13:41:32      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:Fix   pow   点距   col   pac   次方   main   bsp   namespace   

1021 球体体积

 1 #include <bits/stdc++.h>           
 2 using namespace std;                
 3 int main()                      
 4 {   
 5     double r,v;
 6     const float PI=3.1415927;
 7     cin>>r;
 8     v=4.0/3*PI*r*r*r;
 9     printf("%.3lf",v);
10     return 0;
11   }

1022 两点距离

 

1023 绝对值

 1 #include <bits/stdc++.h>           
 2 using namespace std;                
 3 int main()                      
 4 {   
 5     int a;
 6     double b;
 7     cin>>a>>b;
 8     a=abs(a);
 9     b=fabs(b);
10     cout<<a<<" "<<b<<endl; 
11     return 0;
12   }

 

1024 天花板和地板函数

1 #include <bits/stdc++.h>           
2 using namespace std;                
3 int main()                      
4 {   
5     double x;
6     cin>>x;
7     cout<<ceil(x)<<" "<<floor(x)<<endl; 
8     return 0;
9   } 

1025 求平方根

 1 #include <bits/stdc++.h>           
 2 using namespace std;                
 3 int main()                      
 4 {   
 5     double x,y;
 6     cin>>x;
 7     y=sqrt(x);
 8 //    cout<<fixed<<setprecision(3)<<y<<endl;
 9     printf("%.3lf",y);
10     return 0;
11   } 

 

1026 n的a次方

1 #include <bits/stdc++.h>           
2 using namespace std;                
3 int main()                      
4 {   
5     int n,a;
6     cin>>n>>a;
7     cout<<pow(n,a)<<endl;
8     return 0;
9   } 

 

参考代码1021-1026

标签:Fix   pow   点距   col   pac   次方   main   bsp   namespace   

原文地址:https://www.cnblogs.com/pythen/p/11684807.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!