Advertisement
ItzStaze

Untitled

Dec 21st, 2015
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std::
  3. void Staze()
  4. {
  5.     string host;
  6.     int port;
  7.     cout << 'Enter Host';
  8.     cin >> host;
  9.     cout << 'Enter Port\n';
  10.     cin >> port;
  11.     cout << 'Flooding ' << host << ':' << port << '.';
  12. }
  13. int main()
  14. {
  15.     Staze();
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement