学习笔记:VS2017中编写C语言程序时的框架

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <stdio.h>
#include <math.h>
using namespace std;
int main()
{
    cout << "Hello World!\n";


    getchar();
}
 

发布了34 篇原创文章 · 获赞 1 · 访问量 759

猜你喜欢

转载自blog.csdn.net/qq_41708281/article/details/104121322
今日推荐