fork download
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. float r,p,P,L;
  8. cout<<"Vnesi borevi:"<<endl;
  9. cin>>r;
  10. p=3.14;
  11. L=2*r*p;
  12. P=r*r*p;
  13. cout<<"Perimetarot e "<<L<<endl;
  14. cout<<"plostina e "<<P<<endl;
  15.  
  16. system("PAUSE");
  17. return 0;
  18. }
Success #stdin #stdout #stderr 0s 5284KB
stdin
12



stdout
Vnesi borevi:
Perimetarot e 75.36
plostina e 452.16
stderr
sh: 1: PAUSE: not found