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.
路径设置了 但还是没什么用
重装了几次也没什么用