【C++脑图系列01】C++ 简单程序设计

脑图

在这里插入图片描述

代码

#include <iostream>
using namespace std;

//int _tmain(int argc, _TCHAR* argv[])

int main()
{
    cout<<"hello world!\n";

    printf("happy new year");
    return 0;
}
发布了34 篇原创文章 · 获赞 19 · 访问量 2228

猜你喜欢

转载自blog.csdn.net/chiyukunpeng/article/details/105387966