Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #include <iostream>
  2.  
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int a,b;
  9. cout << "witaj w guffienku zrobionym pszes marcina" << endl;
  10. cout << "podaj zmienna a" <<endl;
  11. cin >> a;
  12. cout << "podaj zmienna b" << endl;
  13. cin >> b;
  14. if(b==0)
  15. {
  16. cout << " nie mozna dzielic przez 0 " << endl;
  17.  
  18. }
  19. else
  20. {
  21. cout << "wynik to: " << a/b << endl;
  22. }
  23. return 0;
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement