#2
HVB62017-07-01 15:54
|
// my_c.cpp: 主项目文件。
#include "stdafx.h"
#include "Form1.h"
#include<iostream>
using namespace std;
using namespace my_c;
[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
// 在创建任何控件之前启用 Windows XP 可视化效果
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
// 创建主窗口并运行它
Application::Run(gcnew Form1());
cout <<"Hello world!\n";
std::cout <<"Hello world!\n";
printf ("Hello world!\n");
return 0;
}
只有本站会员才能查看附件,请 登录