参考代码1021-1026
Posted pythen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了参考代码1021-1026相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向ART 脱壳 ( DexClassLoader 脱壳 | DexClassLoader 构造函数 | 参考 Dalvik 的 DexClassLoader 类加载流程 )(代码片段
Android 逆向ART 脱壳 ( DexClassLoader 脱壳 | DexClassLoader 构造函数 | 参考 Dalvik 的 DexClassLoader 类加载流程 )(代码片段