Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2015
1,234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     //initialize an integer variable called a, and give it the value of 750
  8.     int a = 750;
  9.    
  10.     //print out the value of a
  11.     cout << a << endl;
  12.  
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement