Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <stdio.h>
  2. #include <iostream>
  3.  
  4. int main()
  5. {
  6.         int x = 0;
  7.         int y = 5;
  8.         x++;
  9.         y++;
  10.         y+=x;
  11.         std::cout << y;
  12.         system("pause >nul");
  13.         return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement