c1

utorak, 10. travnja 2012.

3. Simple C++ Program - Tutorial


#include <iostream>
using namespace std;
int main()
{
    int number;
    cout<<"Please enter your number: ";
    cin>>number;
    cout<<endl;
    cout<<"Write this on the screen:   "<<number<<endl;
    system("PAUSE");
    return EXIT_SUCCESS;
}

Nema komentara:

Objavi komentar