Here you can find simple C++ code, and you can learn how to make simple c++ program by your self....
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