Advertisement
Guest User

xc resolver leak

a guest
Feb 23rd, 2018
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. ```
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     int num = 400;
  9.     while (num < 421)
  10.     {
  11.         cout << num << endl;
  12.         num = num + 1;
  13.     }
  14.    
  15.     if (num > 420)
  16.     {
  17.     const char* BlazeIt = "Du Hurensohn!";
  18.         cout << BlazeIt << endl;
  19.     }
  20. }```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement