[ create a new paste ] login | about

Link: http://codepad.org/sDccKCrc    [ raw code | fork ]

C++, pasted on Jun 29:
1
2
3
4
5
6
7
8
9
10
// my first program in C++
#include <iostream>
using namespace std;

int main() {

   int num;
   cin >> num;

}


Output:
No errors or program output.


Create a new paste based on this one


Comments: