Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #include <iostream.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6. int x;
  7. float fx;
  8.  
  9. for(x=-10;x<11;x++)
  10. {
  11. if(x==3)
  12. {
  13. cout<<"Diairesi me to mhden"<<endl;
  14. }
  15. else
  16. {
  17.  
  18. fx=1.0/(x-3);
  19. cout<<"H timh ths fx einai:"<<fx<<endl;
  20.  
  21. }
  22.  
  23. }
  24. system("pause");
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement