Advertisement
Guest User

Untitled

a guest
Dec 9th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int liczba;
  6.  
  7. int kwadrat (int x)
  8. {
  9.     return x*x;
  10. }
  11.  
  12. int main()
  13. {
  14.     cout<<"podaj liczbę: ";
  15.     cin>>liczba;
  16.     cout<<"Kwadrat liczby "<<liczba<<" wynosi "<<kwadrat(liczba);
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement