Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- string myName = "Angel";
- int age = 20;
- string address = "Makati City";
- cout << "============================" << endl;
- cout << "Hello World! |" << endl;
- cout << "Hello BSIT 1A and 1N. |" << endl;
- cout << "============================" << endl;
- cout << "Hi, I'm " << myName << ", ";
- cout << age << " years old |" << endl;
- cout << "from " << address << ". |" << endl;
- cout << "============================" << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment