80 likes | 201 Views
Programming 1 C++. Blog : http://summercs240.wikisapces.com Software: Visual Studio 2008. File New Project. Project add new item. Example #1. #include < iostream > using namespace std; int main() { cout << "Enjoy yourself with C++!" << endl ; return 0; }. Exercise 1:.
E N D
Blog : http://summercs240.wikisapces.com Software: Visual Studio 2008 .
Example #1 #include <iostream> using namespace std; int main() { cout << "Enjoy yourself with C++!" << endl; return 0; }
Exercise 1: • Write a program that display your “ Hello YOUR NAME “ • Solution : #include <iostream> using namespace std; int main() { cout << “Hello Aseel " << endl; return 0; }
Exercise 2: • Write a program to swap two integer numbers that entered from user • Solution : #include <iostream> using namespace std; int main() { int number1; int number2; cout<< "please enter first number : " << endl; cin >> number1; cout<< "please enter second number : " << endl; cin >> number2; cout<< "Numbers after swapping : " << number2 << " " << number1 << endl ; return 0; }