Advertisement
wrench786

Lab task - (Function - 1)

Oct 7th, 2021
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. #define ll long long
  4. #define ull unsigned long long
  5. #define uom unordered_map
  6. #define pb push_back
  7. #define yes cout<<"YES\n"
  8. #define no cout<<"NO\n"
  9.  
  10. #define dot(x) fixed<<setprecision(x)
  11. #define wrench786 ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
  12.  
  13. #define PI (acos(-1.0))
  14. #define eps 0.00001
  15. const int LIMIT = 10000*1;
  16. const int mod = 1000000007;
  17. using namespace std;
  18.  
  19. double funck(double radius){
  20. return (3.1416)*(radius)*(radius);
  21. }
  22.  
  23. int main(){
  24. double radius,area;
  25. cin>>radius;
  26. area = funck(radius);
  27. cout<<area<<endl;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement