fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // TO PERFROM ALGEBRAIC OPERATION AS SPECIFIED
  6. double x,a,b,c;
  7. a=7843;
  8. b=7862457;
  9. c=89427;
  10. x=a/(b-c);
  11. printf("result of algebraic operation is as follows : \n %f",x);
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 4228KB
stdin
Standard input is empty
stdout
result of algebraic operation is as follows : 
 0.001009