标题:vc++路径问题
取消只看楼主
klw861110
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2008-11-3
 问题点数:0 回复次数:0 
vc++路径问题
#include<stream.hpp>
#include<dos.h>
main()
{struct dos_date_t today;
struct dos_time_ theTime;
dos_getdate(&today);
cout<<"The date is"<<(int)today.month
<<"/"<<(int)today.day<<"/"<<(int)today.year<<"\n";
dos_gettime(&theTime);
cout<<"The time is"<<(int)theTime.hour<<":";
if(theTime.minute<10)
cout<<'0';
cout<<(int)theTime.minute<<";";
if(theTime.second<10)
cout<<'0';
cout<<(int)theTime.second<<"\n";}
编译时出现Compiling...
stream.cpp
d:\工具\microsoft visual studio\myprojects\stream\stream.cpp(1) : fatal error C1083: Cannot open include file: 'stream.hpp': No such file or directory
Error executing cl.exe.
路径设置了 但还是没什么用
重装了几次也没什么用
搜索更多相关主题的帖子: 路径 
2008-11-03 17:02



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-242181-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.104804 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved