qfedu-basic-level/day4/hello.cpp

22 lines
523 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* ************************************************************************
* 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;
}