Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. isteve@zen:/tmp$ ./foo
  2. 20
  3. isteve@zen:/tmp$ cat foo.cpp
  4. #include <iostream>
  5.  
  6. using namespace std;
  7.  
  8. int main(void) {
  9.         int n1, n2;
  10.  
  11.         n1 = 10;
  12.         n2 = 2;
  13.  
  14.         cout << (n1 * n2) << endl;
  15.  
  16.         return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement