Ramirez_RD

Samson_Cpp_Act

Nov 9th, 2024
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.54 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.   string myName = "Angel";
  6.   int age = 20;
  7.   string address = "Makati City";
  8.   cout << "============================" << endl;
  9.   cout << "Hello World!                |" << endl;
  10.   cout << "Hello BSIT 1A and 1N.       |" << endl;
  11.   cout << "============================" << endl;
  12.   cout << "Hi, I'm " << myName << ", ";
  13.   cout << age << " years old |" << endl;
  14.   cout << "from " << address << ".           |" << endl;
  15.   cout << "============================" << endl;
  16.   return 0;
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment