Advertisement
keysle

Untitled

May 12th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. // my second program in C++
  2. #include <stdio.h>
  3. #include <iostream>
  4. #include <math.h>
  5. #include "bomb.h"
  6. #include "particle.h"
  7. using namespace std;
  8.  
  9. int main ()
  10. {
  11.     Bomb missile;
  12.     missile = new Bomb();
  13.  
  14.     for (int i=0;i<10;i++){
  15.         missile.fly(5);
  16.     }
  17.  
  18.     system ("pause");
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement