摘要:
#include "stdafx.h"#include <stdio.h>首先调用以下方法就可以使用标准输入输出对控制台进行输入输出的操作 AllocConsole(); freopen("CONOUT$", "w", stdout);然后使用如下 char buffer[200]; sprintf(buffer,"%d\n",wParam); printf(buffer);再就是改... 阅读全文
posted @ 2009-10-25 20:50 Zhiyett 阅读(418) 评论(0) 推荐(0) 编辑