Advertisement
Guest User

Help Second

a guest
Oct 6th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <iostream>
  2. #include <conio.h>
  3. #include <ctype.h>
  4. #include <string>
  5. #include <array>
  6. using namespace std;
  7.  
  8. void main(){
  9.     string IP;
  10.     cout << "What ip do you want to attack?" << endl;
  11.     cin >> IP;
  12.  
  13.     while(7==1){
  14.    
  15.     system("ping" + IP);
  16.     system("pause");
  17.    
  18.     }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement