注册 登录
编程论坛 C++教室

我的设计的程序一直有这个问题怎么解决? 高手在哪里!!!

xuhangu 发布于 2012-06-27 10:45, 628 次点击
# include<iostream.h>
# include<string.h>
# include<iomanip.h>
# include"a.h"
C:\Program Files (x86)\Microsoft Visual Studio\MyProjects\1\1.cpp(4) : fatal error C1083: Cannot open include file: 'a.h': No such file or directoryError executing cl.exe.
这一句是什么错误啊?   各位高手
6 回复
#2
xuhangu2012-06-27 10:46
提示就是这一句 # include"a.h"
#3
Wikyo_hoho2012-06-27 11:02
把这a.h文件跟CPP文件放一起
#4
pangding2012-06-27 15:24
错误提示是说:
Cannot open include file: 'a.h': No such file or directory
无法打开包含文件: 'a.h': 无此文件或目录

你确定你有 a.h 这个文件吗?
#5
xuhangu2012-06-27 19:59
回复 3楼 Wikyo_hoho
哦  明白了  谢谢
#6
xuhangu2012-06-27 20:00
回复 4楼 pangding
意思就是有可能是我的程序中没有这个文件  所以无法取?
#7
pangding2012-06-27 23:17
你为什么要包这个文件?
1