知识库

C++语言开发示例:01. 第一个C++程序

2025-02-01 20:10:19 李腾 1 次阅读

myfirst.cpp

#include <iostream>

int main()
{
    using namespace std;
    cout << "Come up and C++ me some time.";
    cout << endl;
    cout << "You won't regret it!" << endl;
    return 0;
}
转载请注明转自www.hylab.cn,原文地址:C++语言开发示例:01. 第一个C++程序

评论 (0)

登录后发表评论

暂无评论,快来发表第一条评论吧!