Advertisement
WupEly

Untitled

Jan 27th, 2022
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include<iostream>
  2. #include<cmath>
  3.  
  4. using namespace std;
  5.  
  6. double calculating(double a, double x);
  7. void setax(double& a, double& x);
  8. void getc(double c);
  9.  
  10. int main() {
  11. double a;
  12. double x;
  13. setax(a, x);
  14. getc(calculating(a, x));
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement