Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.83 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     cout << "*************************************************" << endl;  //Рамка Верхняя
  7.     cout << "* \t\tVisit Card" << "                  \t*" << endl;
  8.     cout << "*-----------------------------------------------*" << endl;
  9.     cout << "* Name:          \tDavid" << "           \t*" << endl; // Name
  10.     cout << "* LastName:       \tCherednik" << "       \t*" << endl;  //Last Name
  11.     cout << "* City:            \tSaint-Petersburg" << "\t*" << endl;  //City
  12.     cout << "* Telephone number: \t+" << 79313585883 << "      \t*" << endl; //Telephone number
  13.     cout << "* Hobby:             \tProgramming" << "     \t*" << endl;
  14.     cout << "*************************************************" << endl; //Рамка Нижняя
  15.  
  16.     cin.get();  //Waiting to press Enter
  17.    
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement