ENDL.CPP
Upload User: dq031136
Upload Date: 2022-08-08
Package Size: 802k
Code Size: 0k
Development Platform:

C++ Builder

  1. #include <iostream.h>
  2. void main(void)
  3.  {
  4.    cout << "This is line one" << endl;
  5.    cout << "This is line two" << endl;
  6.    cout << "This is line three--";
  7.    cout << "It is the last line" << endl;
  8.  }