22 lines
523 B
C++
22 lines
523 B
C++
|
/* ************************************************************************
|
|||
|
* Filename: hello.cpp
|
|||
|
* Description:
|
|||
|
* Version: 1.0
|
|||
|
* Created: 2023年06月14日 17时37分18秒
|
|||
|
* Revision: none
|
|||
|
* Compiler: gcc
|
|||
|
* Author: YOUR NAME (liubo),
|
|||
|
* Company:
|
|||
|
* ************************************************************************/
|
|||
|
|
|||
|
#include <iostream>
|
|||
|
|
|||
|
using namespace std;
|
|||
|
|
|||
|
int main(int argc, char **argv)
|
|||
|
{
|
|||
|
// 你好,c++
|
|||
|
cout << "hi, c++" << endl;
|
|||
|
return 0;
|
|||
|
}
|