// helloworld.cpp : 定义控制台应用程序的入口点。//
#include "stdafx.h"#include "iostream"
int _tmain(int argc, _TCHAR* argv[]) { printf("helloworld"); system("pause"); return 0;}