Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int zyrafa(int i)
  4. {
  5.     return i*i;
  6.     }
  7.  
  8.  
  9. int main()
  10. {
  11.     cout<<zyrafa(5);
  12.     cin.get();
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement