本文介绍了文件未打开...的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#include"puzzle.h"
#include"cursesGui.h"
这两行在编译时在我的程序中造成麻烦.
错误消息是无法打开包含"puzzle.h"和"cursesgui.h"的文件
该错误消息的原因可能是什么?

#include "puzzle.h"
#include "cursesGui.h"
these 2 lines are making trouble in my program while compiling.
the error message is "unable to open file include ''puzzle.h'' and ''cursesgui.h''
what could be the reason of this error message? and its solution?

推荐答案



#include <puzzle.h>
#include <cursesGui.h>


这篇关于文件未打开...的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 18:29