qfedu-basic-level/day4/hello.cpp

22 lines
523 B
C++
Raw Normal View History

2023-06-15 11:56:54 +08:00
/* ************************************************************************
* Filename: hello.cpp
* Description:
* Version: 1.0
* Created: 20230614 173718
* 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;
}